ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## **3.8 公告接口** ### **1. 公告列表** GET: ~~~ /api/notice ~~~ 接口概述:获取所有比赛异常的公告 建议频率:每天一次 | 请求参数 | 数据类型 | 是否必填 | 描述 | | --- | --- | --- | --- | | token | string | 是 | 客户密钥 | 请求url示例. ~~~ /api/notice?token=XXXXX ~~~ ~~~ 公告接口,数据格式示例 { "id": 113956490, "action": "system.notice", "content": { "cn.body": "赛事改期, 待查官方延期公告, 若官方未在12小时内公布开赛时间或未能在24小时内进行,所有玩法将无效", "cn.title": "CSGO MESA联赛 CHECKMATE - VS - Aravt 赛事改期", "en.body": "Match rescheduled. If there is no official announcement within 12 hours from the start time or match did not resume within 24 hours, then all wagers will be cancelled.", "en.title": "CS:GO MESA League CHECKMATE - VS - Aravt Match rescheduled" }, "create_time": "2022-01-18 19:08:40.383535" } ~~~ | 返回参数 | 数据类型 | 描述 | 备注 | | --- | --- | --- | --- | | id | int | 公告id | | | content | string | 公告内容 | | |cn.body | string | 公告中文内容 | | |cn.title| string | 公告中文标题 | | |en.body | string | 公告英文内容 | | |en.title| string | 公告英文标题 | | |create_time| string | 创建时间 | |