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/videosQuota usage: Each successful request to this endpoint deducts 100 quota units from your plan.
Platform Path Family
/api/v1/{platform}/realtime/user/videosAvailable Platforms
Request Parameters
Required Parameters
| Name | In | Type | Description |
|---|---|---|---|
channel_id | query | string | channel_id example: UCUFgkRb0ZHc4Rpq15VRCICA |
Optional Parameters
| Name | In | Type | Description |
|---|---|---|---|
offset | query | string | offset |
Response Fields
| Name | Type | Description |
|---|---|---|
success | boolean | Success |
code | integer | Code |
message | string | Message |
data | object | - |
data.more | boolean | Has more |
data.offset | string | offset |
data.videos | array<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*offsetcURL 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.