channel_info
string
required
A channel id (UC…) or a handle (@mrbeast or bare mrbeast). Handles are resolved for you and cached.
Title, description, country, subscribers, total views and video count for a single channel.
Send a channel id or handle and get back the snippet and statistics. Handles are resolved for you, so no separate lookup is needed. An unresolvable input returns null (still a billable 200). Ideal for creator dashboards, influencer vetting and channel monitoring.
/api/v1/channel/detail
$0.003 / request
Use your Tubefield API key instantly, or inspect the sample response first.
curl -X POST https://tubefield.com/api/v1/channel/detail \
-H "Content-Type: application/json" \
-H "X-API-Key: $TUBEFIELD_API_KEY" \
-d '{"channel_info": "UC_x5XG1OV2P6uZZ5FSM9Ttw"}'
Sample response
{
"channel": {
"channel_id": "UC_x5XG1OV2P6uZZ5FSM9Ttw",
"country": "US",
"description": "Where developers learn and build.",
"published_at": "2007-08-23T00:34:43Z",
"subscribers": 2400000,
"title": "Google for Developers",
"video_count": 5800,
"views": 240000000
},
"target": "UC_x5XG1OV2P6uZZ5FSM9Ttw"
}
Run a real /api/v1/channel/detail request. No key? We show the real sample result so you can still inspect the shape.
Endpoint
POST /api/v1/channel/detail
X-API-Key
$0.003 / request
Leave empty to inspect the response shape without spending API balance.
Sample mode: explore the real response shape for free. Add a key to run a live request.
Response
POST /api/v1/channel/detail
{
"channel": {
"channel_id": "UC_x5XG1OV2P6uZZ5FSM9Ttw",
"country": "US",
"description": "Where developers learn and build.",
"published_at": "2007-08-23T00:34:43Z",
"subscribers": 2400000,
"title": "Google for Developers",
"video_count": 5800,
"views": 240000000
},
"target": "UC_x5XG1OV2P6uZZ5FSM9Ttw"
}
The full contract for /api/v1/channel/detail: what to send and what comes back.
channel_info
string
required
A channel id (UC…) or a handle (@mrbeast or bare mrbeast). Handles are resolved for you and cached.
| Field | Type | Description |
|---|---|---|
channel |
object | null | Channel object, or null when the id doesn't resolve (still a billable 200). |
channel.title |
string | Channel title. |
channel.description |
string | null | Channel description. |
channel.country |
string | null | Declared country code when set. |
channel.published_at |
string | Channel creation timestamp (ISO 8601). |
channel.subscribers |
integer | null | Subscriber count when public. |
channel.views |
integer | null | Total channel views. |
channel.video_count |
integer | null | Number of public videos. |
Copy, paste, swap in your API key.
curl -X POST https://tubefield.com/api/v1/channel/detail \
-H "Content-Type: application/json" \
-H "X-API-Key: " \
-d '{"channel_info": "UC_x5XG1OV2P6uZZ5FSM9Ttw"}'
Common ways Channel Detail ends up in production.
Influencer and creator vetting.
Channel growth dashboards.
Enriching channel links found in the wild.
The same predictable contract on every endpoint.
200 |
Success. The lookup completed and was charged, even if the response is empty. |
401 |
Missing or unknown API key. |
402 |
Not enough balance on the account. |
422 |
Invalid request body (wrong shape or types). |
429 |
Rate limit exceeded: max 10 requests per second per API key. |
Explore the rest of the YouTube API.
Video Detail
/api/v1/video/detail
Video Comments
/api/v1/video/comments
Video Transcript
/api/v1/video/transcript
Channel Videos
/api/v1/channel/videos
Channel Playlists
/api/v1/channel/playlists
Channel Lookup
/api/v1/channel/lookup
Playlist Detail
/api/v1/playlist/detail
Playlist Videos
/api/v1/playlist/videos
Video Search
/api/v1/search/videos
Search Result (SERP)
/api/v1/search/result
Account Balance
/api/v1/account/balance
New accounts start with a free API balance. Paid balance never expires, so it can sit until your workflows need it.
$0.50 free
$0.50 free balance to start. About 150 standard requests. Get an API key in seconds with no credit card.
$10 one-time
Adds $10 to your API balance for steady production traffic and early automated jobs.
$100 one-time
$130 spendable balance, including a $30 bonus. The sweet spot for production workloads.
Start with a free key and about 150 free requests, on REST, MCP, or both.