How to Call the YouTube Channel API
Simple REST API endpoint. Just make a GET request with your API key and get structured data back.
GETCode Examples
cURL
curl -X GET 'https://api.parseium.com/v1/youtube-channel?handle=handlehere&api_key=YOUR_API_KEY'TypeScript
const response = await fetch(`https://api.parseium.com/v1/youtube-channel?handle=handlehere&api_key=${process.env.PARSEIUM_API_KEY}`, {
method: 'GET',
});
const data = await response.json();
console.log(data);Python
import requests
import os
api_key = os.environ['PARSEIUM_API_KEY']
response = requests.get(
f'https://api.parseium.com/v1/youtube-channel?handle=handlehere&api_key={api_key}'
)
data = response.json()
print(data)Query Parameters
Pass parameters in the URL query string:
handle=handlehereResponse Schema
The API returns structured JSON data with the following schema:
{
"identity": {
"channel_id": {
"type": "string"
},
"channel_url": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"avatar": [
{
"url": {
"type": "string"
},
"width": {
"type": "number"
},
"height": {
"type": "number"
}
}
],
"tags": {
"type": "string"
}
},
"metrics": {
"subscriber_count": {
"type": "number"
},
"subscriber_count_text": {
"type": "string"
},
"video_count_text": {
"type": "string"
},
"view_count_text": {
"type": "string"
}
},
"about": {
"joined_date": {
"type": "string"
},
"country": {
"type": "string"
}
},
"links": {
"other": [
{
"type": "string"
}
]
}
}Need more details? Check out our full API documentation for authentication, error handling, rate limits, and advanced options.
Use Cases for YouTube Channel
See how developers use this API in production applications.
Creator Analysis
Analyze YouTube creator profiles, subscriber counts, and channel strategy to find collaboration opportunities.
Channel Monitoring
Monitor competitor channels, track subscriber growth, and stay updated on content trends in your niche.
Market Research
Gather YouTube insights, identify trending creators, and understand audience demographics and engagement.
Simple, Transparent Pricing
Every API call to YouTube Channel costs 1 credit
Choose a plan based on your monthly usage. All plans include access to all APIs.
~150,000 API calls/mo
- 150,000 credits/month
- Email support
- 1,000 requests/day
- Priority processing
~700,000 API calls/mo
- 700,000 credits/month
- Priority support
- 10,000 requests/day
- Advanced features
~3,000,000 API calls/mo
- 3M credits/month
- Dedicated support
- Unlimited requests
- Custom integrations
Need more? Check out our for enterprise options and custom plans.
Frequently Asked Questions
Common questions about the YouTube Channel API.
What channel data is included?
Full identity (channel ID, URL, name, description, avatar, tags), metrics (subscriber count, video count, view count), about info (joined date, country), and external links.
Can I use channel handle or ID?
The API accepts the YouTube channel handle (e.g., @KillTony). The handle is the custom URL identifier that appears in modern YouTube channels.
Are there rate limits?
Each request costs 1 credit. Rate limits depend on your Parseium plan. Check your dashboard for current usage and limits.
Related APIs
Explore other ready-to-use APIs that might interest you.