Get Twitch Video Badge Data

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

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

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
dataobject-
data.badgesarray<object>Badges
data.videoobjectVideo

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.

Related Endpoints