scrumball-openapi
  1. twitch
scrumball-openapi
  • Scrumball-API
  • Code-状态码
  • tiktok
    • 用户信息
      GET
    • 用户视频
      GET
  • instagram
    • 用户信息
      GET
    • 用户贴文
      GET
  • youtube
    • 用户信息
      GET
    • 用户视频
      GET
  • 受众画像(audience)
    • YouTube
      • 地理位置(geography)
      • 语言(language)
      • 年龄(age)
      • 性别(gender)
      • 兴趣(interest)
      • 互动行为(interactive behavior)
      • 营销路径(brand opportunities)
      • 社交人格(content style)
    • TikTok
      • 地理位置(geography)
      • 语言(language)
      • 年龄(age)
      • 性别(gender)
      • 兴趣(interest)
      • 互动行为(interactive behavior)
      • 营销路径(brand opportunities)
      • 设备占比(device)
      • 社交人格(content style)
    • Instagram
      • 地理位置(geography)
      • 语言(language)
      • 年龄(age)
      • 性别(gender)
      • 兴趣(interest)
      • 互动行为(interactive behavior)
      • 营销路径(brand opportunities)
      • 设备占比(device)
      • 社交人格(content style)
  • twitch
    • 用户信息
      GET
    • 用户视频
      GET
    • 视频详情
      GET
    • 视频徽标数据
      GET
    • 视频聊天消息
      GET
    • 视频下载URL
      GET
    • 搜索类别
      POST
    • 搜索频道
      POST
    • 搜索直播
      POST
    • 监控用户直播
      POST
    • 获取监控任务列表
      GET
    • 获取监控直播列表
      GET
    • 获取直播观众人数变化
      GET
  1. twitch

搜索频道

POST
/api/v1/twitch/search/channels

请求参数

Authorization
or
Header 参数

Body 参数application/json必填

示例
{
    "query": "string",
    "live_only": false,
    "first": 20,
    "after": "string"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.scdata.cc/api/v1/twitch/search/channels' \
--header 'Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "query": "string",
    "live_only": false,
    "first": 20,
    "after": "string"
}'

返回响应

🟢200成功
application/json
Successful Response
Body

示例
{
    "success": true,
    "code": 200,
    "message": "请求成功",
    "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:22Z"
            }
        ]
    }
}
🟠422无法处理的实体
上一页
搜索类别
下一页
搜索直播
Built with