Returns the stored public profile of a YouTube creator: identity and bio, follower and following counts, verification flag, linked accounts on other platforms and rolling engagement averages over recent videos. Records come from the persisted database, which suits batch screening; use the realtime variant when you need up-to-the-minute values.
/api/v1/youtube/user/infoQuota usage: Each successful request to this endpoint deducts 1 quota units from your plan.
Platform Path Family
/api/v1/{platform}/user/infoAvailable Platforms
Request Parameters
Required Parameters
This endpoint has no required parameters.
Optional Parameters
| Name | In | Type | Description |
|---|---|---|---|
channel_id | query | string | channel_id example: UCUFgkRb0ZHc4Rpq15VRCICA |
username | query | string | username example: nike |
Response Fields
| Name | Type | Description |
|---|---|---|
success | boolean | Success |
code | integer | Code |
message | string | Message |
data | object | - |
data.channel_id | string | Channel ID |
data.related_platforms | array<object> | Related platforms |
data.title | string | Channel name |
data.channel_url | string | Channel URL |
data.avatar | string | Channel avatar |
data.description | string | Channel bio |
data.gender | string | Channel gender (male, female, unknown) |
data.country | string | Channel region |
data.language | string | Channel language |
data.tags | array<string> | Channel tags |
data.register_at | string | Channel created at |
data.subscriber_count | integer | Subscriber count |
data.publish_count_month | integer | Videos per month |
data.publish_count_week | integer | Videos per week |
data.last_publish_at | string | Last publish time |
data.total_video_count | integer | Total videos |
data.total_view_count | integer | Total views |
data.avg_view_count | string | Overall average plays |
data.avg_engagement_rate_5 | string | Last 5 videos: average engagement rate |
data.avg_view_rate_5 | string | Last 5 videos: average view rate |
data.avg_view_count_5 | string | Last 5 videos: average plays |
data.avg_comment_count_5 | string | Last 5 videos: average comments |
data.avg_like_count_5 | string | Last 5 videos: average likes |
data.avg_engagement_rate_10 | string | Last 10 videos: average engagement rate |
data.avg_view_rate_10 | string | Last 10 videos: average view rate |
data.avg_view_count_10 | string | Last 10 videos: average plays |
data.avg_comment_count_10 | string | Last 10 videos: average comments |
data.avg_like_count_10 | string | Last 10 videos: average likes |
data.avg_engagement_rate_30 | string | Last 30 videos: average engagement rate |
data.avg_view_rate_30 | string | Last 30 videos: average view rate |
data.avg_view_count_30 | string | Last 30 videos: average plays |
data.avg_comment_count_30 | string | Last 30 videos: average comments |
data.avg_like_count_30 | string | Last 30 videos: average likes |
data.med_engagement_rate_30 | string | Last 30 videos: median engagement rate |
data.med_view_rate_30 | string | Last 30 videos: median view rate |
data.med_view_count_30 | string | Last 30 videos: median plays |
data.med_comment_count_30 | string | Last 30 videos: median comments |
data.med_like_count_30 | string | Last 30 videos: median likes |
data.evaluation_min | string | Estimated minimum collaboration rate (USD) |
data.evaluation_max | string | Estimated maximum collaboration rate (USD) |
data.last_update_at | string | Data updated at |
Try It
Query Params
channel_idusernamecURL Example
curl -X GET "https://openapi.scdata.cc/api/v1/youtube/user/info" \-H "Authorization: YOUR_API_KEY"
Response Example (200 application/json)
{"success": true,"code": 200,"message": "Request successful","data": {"channel_id": "UCX6OQ3DkcsbYNE6H8uQQuVA","username": "MrBeast","related_platforms": [],"title": "MrBeast","channel_url": "https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA","avatar": "https://img.scrumball.cn/FpiY4unAm7NroQ3dS4heDOp89moK","description": "SUBSCRIBE FOR A COOKIE!\nNew MrBeast or MrBeast Gaming video every single Saturday at noon eastern time!\nAccomplishments:\n- Raised $20,000,000 To Plant 20,000,000 Trees\n- Removed 30,000,000 pounds of trash from the ocean\n- Helped 2,000 people walk again\n- Helped 1,000 blind people see\n- Helped 1,000 deaf people hear\n- Built wells in Africa\n- Built and gave away 100 houses\n- Adopted every dog in a shelter (twice)\n- Given millions to charity\n- Started my own snack company Feastables\n- Started my own software company Viewstats\n- Started Lunchly, a tasty, better-for-you lunch option\n- Gave away a private island (twice)\n- Gave away 1 million meals\n- I counted to 100k\n- Ran a marathon in the world's largest shoes\n- Survived 50 hours in Antarctica\n- Recreated Squid Game in real life\n- Created the largest competition show with 1000 people (Beast Games)\n- Gave $5,000,000 to one person\n- Passed T-Series to become most subscribed YouTube channel 🥹\nyou get it, I appreciate all of you so much :)\n","gender": "male","country": "US","language": "en","tags": [],"register_at": "2012-02-20 08:43:50","subscriber_count": 432000000,"publish_count_month": 8,"publish_count_week": 1,"last_publish_at": "2025-09-02","total_video_count": 897,"total_view_count": 94445033195,"avg_view_count": "137128083.23","avg_engagement_rate_5": "2.99%","avg_view_rate_5": "32.08%","avg_view_count_5": "138597632.40","avg_comment_count_5": "12504.60","avg_like_count_5": "4134483.00","avg_engagement_rate_10": "2.94%","avg_view_rate_10": "24.87%","avg_view_count_10": "107445917.40","avg_comment_count_10": "14019.30","avg_like_count_10": "3140011.50","avg_engagement_rate_30": "2.37%","avg_view_rate_30": "31.74%","avg_view_count_30": "137128083.23","avg_comment_count_30": "21829.07","avg_like_count_30": "3221348.67","med_engagement_rate_30": "2.42%","med_view_rate_30": "27.22%","med_view_count_30": "117601552","med_comment_count_30": "11374","med_like_count_30": "2831302","last_update_at": "2025-09-08 17:27:53"}}
Use Cases
- Creator vetting — Check follower count, verification status and average engagement before deciding whether a creator deserves a closer look.
- Cross-platform matching — Use the linked accounts to connect a YouTube handle with the same creator's other channels and build a single creator record.