Get YouTube Creator Videos (Realtime)

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

Fetches a creator's most recent videos straight from YouTube at request time. Use it for content published in the last hours or when the database copy is stale; realtime collection costs more quota than a database read.

GET/api/v1/youtube/realtime/user/videos

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

Platform Path Family

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

Available Platforms

Request Parameters

Required Parameters

NameInTypeDescription
channel_idquerystringchannel_id
example: UCUFgkRb0ZHc4Rpq15VRCICA

Optional Parameters

NameInTypeDescription
offsetquerystringoffset

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.morebooleanHas more
data.offsetstringoffset
data.videosarray<object>videos

Try It

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

Query Params

channel_id*
offset

cURL Example

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

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"more": true,
"offset": "string",
"videos": [
{
"video_id": "string",
"title": "string",
"description": "string",
"create_at": "2019-08-24T14:15:22.123Z",
"channel_title": "string",
"channel_id": "string"
}
]
}
}

Use Cases

  • Campaign delivery check — Confirm that a sponsored piece went live and capture its first-hours engagement.
  • Trend spotting — Poll a set of creators for their newest videos to catch emerging topics early.

Related Endpoints