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/listQuota 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
| Name | In | Type | Description |
|---|---|---|---|
page | query | integer | Page number |
page_size | query | integer | Page size |
Response Fields
| Name | Type | Description |
|---|---|---|
success | boolean | Success |
code | integer | Code |
message | string | Message |
data | object | - |
data.items | array<object> | Items |
data.total | integer | Total |
data.page | integer | Page |
data.page_size | integer | Page Size |
data.total_pages | integer | Total 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
pagepage_sizecURL 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.