Get Twitch Video Download URL

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

Resolves a video id to a downloadable media URL. URLs are time-limited; fetch a fresh one right before downloading.

GET/api/v1/twitch/video/download/url

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

Request Parameters

Required Parameters

NameInTypeDescription
video_idquerystringVideo ID
example: 2300924413

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataarray<object>Data
data[].namestringname
data[].urlstringurl

Try It

https://openapi.scdata.cc/api/v1/twitch/video/download/url
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard

Query Params

video_id*

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/twitch/video/download/url?video_id=2300924413" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": [
{
"name": "string",
"url": "string"
}
]
}

Use Cases

  • Compliance archive — Keep a copy of a sponsored broadcast for the contract record.
  • Clip production — Download source video to cut highlights for other channels.

Related Endpoints