在线文档
接口说明(Apifox)
路径、参数、返回字段、示例都在这里。打开就能看,不用自己导入任何东西。
文档链接配置中,请稍后再试或联系卖家获取。
看接口点文档;用 AI 写代码就装 Skill。
Base:https://football.fastoffice.site/v1 ·
鉴权:Authorization: Bearer 你的密钥 ·
默认 30 次/分钟。
const res = await fetch( "https://football.fastoffice.site/v1/leagues", { headers: { Authorization: `Bearer ${process.env.FOOTBALL_API_KEY}` } } ); const json = await res.json(); // 成功:json.数据 失败:json.错误
HttpRequest req = HttpRequest.newBuilder()
.uri(URI.create("https://football.fastoffice.site/v1/leagues"))
.header("Authorization", "Bearer " + System.getenv("FOOTBALL_API_KEY"))
.GET().build();