List Twitch Monitor Tasks

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

Returns the monitoring tasks owned by your account so you can audit what is tracked and obtain monitor ids for the other Twitch monitoring endpoints.

GET/api/v1/twitch/monitor/list

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

Request Parameters

Required Parameters

This endpoint has no required parameters.

Optional Parameters

NameInTypeDescription
pagequeryintegerPage number
page_sizequeryintegerPage size

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.itemsarray<object>Items
data.totalintegerTotal
data.pageintegerPage
data.page_sizeintegerPage Size
data.total_pagesintegerTotal Pages

Try It

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

Query Params

page
page_size

cURL Example

bash
curl -X GET "https://openapi.scdata.cc/api/v1/twitch/monitor/list" \
-H "Authorization: YOUR_API_KEY"

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"items": [
{
"monitor_id": "string",
"monitor_url": "string",
"user_login": "string",
"user_id": 0,
"monitor_start_time": "2019-08-24T14:15:22.123Z",
"monitor_end_time": "2019-08-24T14:15:22.123Z"
}
],
"total": 0,
"page": 0,
"page_size": 0,
"total_pages": 0
}
}

Use Cases

  • Task housekeeping — Review active monitors and retire the ones no longer needed.
  • Portfolio overview — Show every streamer under observation on one internal page.

Related Endpoints