Create Twitch Live Monitor

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

Registers a streamer for live monitoring. While the task is active, each broadcast is captured together with periodic viewer-count samples, readable through the monitored-streams and viewer-trend endpoints.

POST/api/v1/twitch/monitor/user

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

Request Parameters

Required Parameters

NameInTypeDescription
monitor_urlbodystringMonitored URL
example: string
monitor_start_timebodystringMonitoring start time
example: string
monitor_end_timebodystringMonitoring end time
example: string

Response Fields

NameTypeDescription
successbooleanSuccess
codeintegerCode
messagestringMessage
datastringData

Try It

https://openapi.scdata.cc/api/v1/twitch/monitor/user
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/monitor/user" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"monitor_url":"string","monitor_start_time":"string","monitor_end_time":"string"}'

Response Example (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": "string"
}

Use Cases

  • Sponsorship tracking — Monitor a partnered streamer for the length of a campaign to verify delivery.
  • Talent scouting — Watch a rising streamer's audience over weeks before offering a contract.

Related Endpoints