Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$20 / 1k profiles Extract the visible email address from a YouTube channel’s public profile page using its specific URL

Endpoint

POST /api/v1/agents/youtube/email/run

Parameters

url
string
required
Text · The URL of YouTube channel you want to get the email.

Response columns

FieldDisplay nameType
youtubeChannelYouTube Channeltext
emailEmailarray

Example

curl -X POST https://api.mindcase.co/api/v1/agents/youtube/email/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "url": "https://www.youtube.com/@MrBeast"
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "youtubeChannel": "@MrBeast",
      "email": [
        "contact@mrbeastbusiness.com"
      ]
    }
  ]
}