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/urlQuota usage: Each successful request to this endpoint deducts 1 quota units from your plan.
Request Parameters
Required Parameters
| Name | In | Type | Description |
|---|---|---|---|
video_id | query | string | Video ID example: 2300924413 |
Response Fields
| Name | Type | Description |
|---|---|---|
success | boolean | Success |
code | integer | Code |
message | string | Message |
data | array<object> | Data |
data[].name | string | name |
data[].url | string | url |
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.