Search Twitch Channels

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

Runs a keyword search over Twitch channels and returns matches with their live state and channel metadata, paginated.

POST/api/v1/twitch/search/channels

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

Request Parameters

Required Parameters

NameInTypeDescription
querybodystringSearch query
example: string

Optional Parameters

NameInTypeDescription
live_onlybodybooleanOnly search live channels
example: true
firstbodyintegerMaximum number of items per page. Minimum 1, maximum 100, default 20
example: 0
afterbodyobjectNext page cursor
example: string

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.morebooleanHas more
data.offsetstringoffset
data.dataarray<object>data

Try It

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

JSON Body

cURL Example

bash
curl -X POST "https://openapi.scdata.cc/api/v1/twitch/search/channels" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"string","live_only":true,"first":0,"after":"string"}'

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"more": true,
"offset": "string",
"data": [
{
"id": "string",
"broadcaster_language": "string",
"broadcaster_login": "string",
"display_name": "string",
"game_id": "string",
"game_name": "string",
"is_live": true,
"tags": [
"string"
],
"thumbnail_url": "string",
"title": "string",
"started_at": "2019-08-24T14:15:22.123Z"
}
]
}
}

Use Cases

  • Streamer discovery — Find channels that mention a product category or community in their name or title.
  • Language-specific sourcing — Filter results by broadcast language for regional campaigns.

Related Endpoints