- Scrumball-API
- Code-状态码
- tiktok
- instagram
- youtube
- twitch
- 受众画像
获取监控任务列表
GET
/api/v1/twitch/monitor/list
twitch
请求参数
Query 参数
page
integer
Page
>= 1
默认值:
1
page_size
integer
Page Size
<= 50> 0
默认值:
20
Header 参数
Authorization
string
可选
默认值:
{{auth_key}}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://openapi.scdata.cc/api/v1/twitch/monitor/list' \
--header 'Authorization: '
返回响应
🟢200成功
application/json
Body
success
boolean
Success
默认值:
true
code
integer
Code
默认值:
200
message
string
Message
默认值:
请求成功
data
必需
Any of
items
array[object (TwitchMonitorTaskRes) {6}]
Items
total
integer
Total
page
integer
Page
page_size
integer
Page Size
total_pages
integer
Total Pages
示例
{
"success": true,
"code": 200,
"message": "请求成功",
"data": {
"items": [
{
"monitor_id": "string",
"monitor_url": "string",
"user_login": "string",
"user_id": 0,
"monitor_start_time": "2019-08-24T14:15:22Z",
"monitor_end_time": "2019-08-24T14:15:22Z"
}
],
"total": 0,
"page": 0,
"page_size": 0,
"total_pages": 0
}
}
🟠422参数错误