Aggregates the badges of everyone who chatted during a video, giving a proxy for how much of the audience is subscribed or otherwise invested.
GET
/api/v1/twitch/video/badges/dataQuota 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 | object | - |
data.badges | array<object> | Badges |
data.video | object | Video |
Try It
https://openapi.scdata.cc/api/v1/twitch/video/badges/data
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/badges/data?video_id=2300924413" \-H "Authorization: YOUR_API_KEY"
Response Example (200 application/json)
json
{"success": true,"code": 200,"message": "Request successful","data": {"badges": [{"id": "string","set_id": "string","version": "string","title": "string","image1x": "string","image2x": "string","image4x": "string","click_action": "string","click_url": "string"}],"video": {"id": "string","broadcast_type": "string","length_seconds": 0,"owner": {"id": "string","login": "string","broadcast_badges": [{"id": "string","set_id": "string","version": "string","title": "string","image1x": "string","image2x": "string","image4x": "string","click_action": "string","click_url": "string"}]}}}}
Use Cases
- Community strength — Prefer streamers whose chat has a high share of subscribers.
- Audience quality check — Use badge diversity as a signal that viewers are real, engaged community members.