> ## Documentation Index
> Fetch the complete documentation index at: https://mindcase.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# YouTube Channel Emails

> Extract the visible email address from a YouTube channel's public profile page using its specific URL

`$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

<ParamField body="url" type="string" required>
  **Text** · The URL of YouTube channel you want to get the email.
</ParamField>

## Response columns

| Field            | Display name    | Type  |
| ---------------- | --------------- | ----- |
| `youtubeChannel` | YouTube Channel | text  |
| `email`          | Email           | array |

## Example

<CodeGroup>
  ```bash curl theme={null}
  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"
    }
  }'
  ```

  ```python Python theme={null}
  import requests

  resp = requests.post(
      "https://api.mindcase.co/api/v1/agents/youtube/email/run",
      headers={"Authorization": "Bearer mk_live_abc123def456"},
      json={"params": {
      "url": "https://www.youtube.com/@MrBeast"
  }},
  )
  data = resp.json()
  ```
</CodeGroup>

### Example response

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