Returns a paginated list of a Twitch channel's videos, newest first, with the metadata needed to pick representative content.
GET
/api/v1/twitch/user/videosQuota usage: Each successful request to this endpoint deducts 1 quota units from your plan.
Request Parameters
Required Parameters
| Name | In | Type | Description |
|---|---|---|---|
user_id | query | string | user_id example: 19571641 |
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/twitch/user/videos
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard
Query Params
user_id*offsetcURL Example
bash
curl -X GET "https://openapi.scdata.cc/api/v1/twitch/user/videos?user_id=19571641" \-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","stream_id": "string","user_id": "string","user_login": "string","user_name": "string","title": "string","description": "string","created_at": "2019-08-24T14:15:22.123Z","published_at": "2019-08-24T14:15:22.123Z","url": "string","thumbnail_url": "string","viewable": "string","view_count": 0,"language": "string","type": "string","duration": "string"}]}}
Use Cases
- Content review — Sample recent broadcasts to judge production quality and typical stream length.
- VOD performance — Compare view counts across VODs to find the formats that keep drawing an audience after the live show.