💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
#### 动画直播列表 一. V1,V2版本动画直播: GET: ~~~ /sport/api/v1/match/animation/list ~~~ 接口说明:未开始和进行中有动画直播的比赛,接口返回V1,V2版本的动画直播链接 二.V3版本动画直播(仅有足篮球): GET: ~~~ /sport/api/v1/match/animation/enhanced/list ~~~ 接口说明:未开始和进行中有动画直播的比赛,接口返回V3版本的动画直播链接 请求参数: | 请求参数 | 类型 | 是否必填 | 描述 | | --- | --- | --- | --- | | token | string | 是 | 客户密钥 | | sport_id| int | 是 | 运动ID | | status| string| 否 | 比赛状态 | | page | int | 否 | 页数 | | per_page | int | 否 | 每页数据条数 | ~~~ { "code": 0, "data": { "list": { "total": 3, "items": [                 { "sport_id": 207, //运动ID "match_id": 139392, //比赛ID "status": "live", //比赛状态 "animation": [                         { "version": "v2", //动画直播版本 "url_zh": "/v2/live/BD653EBFB9A50A5A43E7F4206B70212AY2hp", //中文动画直播 "url_en": "/v2/live/BD653EBFB9A50A5A43E7F4206B70212AZW5n" //英文动画直播                         }                     ]                 },                 { "sport_id": 202, "match_id": 3239007, "status": "live", "animation": [                     { "version": "v2", "url_zh": "/v2/live/7D4E1D5476B77740D071497E8D856828Y2hp", "url_en": "/v2/live/7D4E1D5476B77740D071497E8D856828ZW5n"                         }                     ]                 }             ]         }, "total": 2     }, "msg": "" } ~~~