Get Twitch Creator Videos

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

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/videos

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

Request Parameters

Required Parameters

NameInTypeDescription
user_idquerystringuser_id
example: 19571641

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/twitch/user/videos
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard

Query Params

user_id*
offset

cURL 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.

Related Endpoints