/channel/{channel_id}/emailGet Channel Email by Channel ID
Channel
Cost / request
$0.01
Response format
JSON
Protocol
REST
Description
Returns the public contact email(s) for a YouTube channel given its channel ID (e.g. UCdcUmdOxMrhRjKMw-BX19AA).
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| channel_id | path | string | required | —Default: UCdcUmdOxMrhRjKMw-BX19AA |
Responses
Array of emails will be returned
{
"type": "object",
"properties": {
"code": {
"type": "integer"
},
"data": {
"type": "object",
"properties": {
"email": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"type": "string"
}
}
},
"message": {
"type": "string"
}
}
}Agent / Developer Schema
Machine-readable formats for integrating this endpoint into AI agents and toolchains.
{
"operationId": "Get_Channel_Email_By_Id",
"method": "get",
"path": "/channel/{channel_id}/email",
"summary": "Get Channel Email by Channel ID",
"description": "Returns the public contact email(s) for a YouTube channel given its channel ID (e.g. UCdcUmdOxMrhRjKMw-BX19AA).",
"parameters": [
{
"name": "channel_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"default": "UCdcUmdOxMrhRjKMw-BX19AA"
}
}
],
"responses": [
{
"statusCode": "200",
"description": "Array of emails will be returned",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"code": {
"type": "integer"
},
"data": {
"type": "object",
"properties": {
"email": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"type": "string"
}
}
},
"message": {
"type": "string"
}
}
},
"example": {
"code": 200,
"data": {
"email": [
"nikoenquiries@gmail.com",
"ndlstories@gmail.com"
],
"status": "succ"
},
"message": "Success"
}
}
}
},
{
"statusCode": "400",
"description": "Bad request"
},
{
"statusCode": "401",
"description": "Unauthorized - invalid API key"
},
{
"statusCode": "429",
"description": "Rate limit exceeded"
}
]
}Pricing
$0.01per successful request
Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.
Start using this endpoint
Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.