/channel/emailGet Channel Email by URL
Channel
Cost / request
$0.01
Response format
JSON
Protocol
REST
Description
Returns the public contact email(s) for a YouTube channel, given its channel URL (e.g. https://www.youtube.com/@handle).
Parameters
bodyRequest Bodyrequired
Content type: application/json
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "Full YouTube channel URL (e.g. https://www.youtube.com/@theAIsearch)."
}
}
}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_URL",
"method": "post",
"path": "/channel/email",
"summary": "Get Channel Email by URL",
"description": "Returns the public contact email(s) for a YouTube channel, given its channel URL (e.g. https://www.youtube.com/@handle).",
"parameters": [],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "Full YouTube channel URL (e.g. https://www.youtube.com/@theAIsearch)."
}
}
},
"example": {
"url": "https://www.youtube.com/@theAIsearch"
}
}
}
},
"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": [
"aisearchio@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.