Skip to main content
POST
/
v1
/
youtube
/
channel
/
email
Get Channel Email by URL
curl --request POST \
  --url https://api.agntdata.dev/v1/youtube/channel/email \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://www.youtube.com/@theAIsearch"
}
'
{
  "code": 200,
  "data": {
    "email": [
      "aisearchio@gmail.com"
    ],
    "status": "succ"
  },
  "message": "Success"
}

Authorizations

Authorization
string
header
required

Bearer token. Pass your agntdata API key as: Authorization: Bearer agnt_live_...

Body

application/json
url
string
required

Full YouTube channel URL (e.g. https://www.youtube.com/@theAIsearch).

Response

Array of emails will be returned

code
integer
data
object
message
string