Get YouTube Creator Videos

9 endpoints • Base: https://openapi.scdata.cc

Returns a paginated list of a YouTube creator's videos from the persisted database, each with its publish time, caption and engagement counters. Ideal for building performance timelines or picking representative content.

GET/api/v1/youtube/user/videos

Quota usage: Each successful request to this endpoint deducts 1 quota units from your plan.

Platform Path Family

/api/v1/{platform}/user/videos

Available Platforms

Request Parameters

Required Parameters

NameInTypeDescription
channel_idquerystringChannel ID
example: UCX6OQ3DkcsbYNE6H8uQQuVA

Optional Parameters

NameInTypeDescription
publish_at_startquerystringPublish time from
example: 2025-01-01
publish_at_endquerystringPublish time to
example: 2025-01-31
video_idquerystringVideo ID
example: L5ihmu87xTE
is_paidquerystringSponsored video (1 = yes)
example: 1
sort_byquerystringSort field (publish_at, view_count, engagement_rate)
example: publish_at
sort_orderquerystringSort direction (asc, desc), default desc
example: desc
pagequeryintegerPage number
page_sizequeryintegerPage size

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.itemsarray<object>Items
data.totalintegerTotal
data.pageintegerPage
data.page_sizeintegerPage Size
data.total_pagesintegerTotal Pages

Try It

https://openapi.scdata.cc/api/v1/youtube/user/videos
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard

Query Params

channel_id*
publish_at_start
publish_at_end
video_id
is_paid
sort_by
sort_order
page
page_size

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/youtube/user/videos?channel_id=UCX6OQ3DkcsbYNE6H8uQQuVA" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"items": [
{
"video_id": "hTSaweR8qMI",
"video_url": "https://www.youtube.com/watch?v=hTSaweR8qMI",
"title": "$1 vs $500,000 Romantic Date",
"description": "Experiencing all of this was incredible\nBuy Feastables! It tastes amazing and it's ethically sourced šŸ‘‰ https://fstbls.com/5mj6dv\n\nNew Merch - https://mrbeast.store\n\nCheck out Viewstats! - https://www.viewstats.com/\n\nSUBSCRIBE OR I TAKE YOUR DOG\n╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗\nā•‘ā•šā•£ā•‘ā•‘ā•‘ā•šā•£ā•šā•£ā•”ā•£ā•”ā•£ā•‘ā•šā•£ā•ā•£ \nā• ā•—ā•‘ā•šā•ā•‘ā•‘ā• ā•—ā•‘ā•šā•£ā•‘ā•‘ā•‘ā•‘ā•‘ā•ā•£\nā•šā•ā•©ā•ā•ā•©ā•ā•©ā•ā•©ā•ā•©ā•ā•šā•©ā•ā•©ā•ā•\n\nFor any questions or inquiries regarding this video, please reach out to [email protected]\n\n----------------------------------------------------------------\nfollow all of these or i will kick you\n• Facebook - https://www.facebook.com/MrBeast/\n• Twitter - https://twitter.com/MrBeast\n• Instagram - https://www.instagram.com/mrbeast\n• Im Hiring! - https://www.mrbeastjobs.com/\n--------------------------------------------------------------------",
"cover_url": "https://img.scrumball.cn/FskvLUVwLC3ka5xax-Tw1APV80on?imageView2/2/w/300",
"publish_at": "2025-06-08 00:00:00",
"duration_second": 1042,
"like_count": 1892706,
"comment_count": 37838,
"view_count": 51032102,
"video_type": "video",
"like_rate": "0.04",
"view_subscriber_rate": "0.13",
"engagement_rate": "3.78",
"channel_title": "MrBeast",
"channel_url": "https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA",
"channel_subscriber_count": 403000000,
"last_update_at": "2025-06-10 00:06:48"
}
],
"total": 293,
"page": 1,
"page_size": 1,
"total_pages": 293
}
}

Use Cases

  • Content performance review — Compare engagement across a creator's latest videos to see which formats and topics resonate with their audience.
  • Brand-safety screening — Scan recent captions and topics before a partnership to make sure the creator's content fits the brand.

Related Endpoints