怎么接入

看接口点文档;用 AI 写代码就装 Skill。 Base:https://football.fastoffice.site/v1 · 鉴权:Authorization: Bearer 你的密钥 · 默认 30 次/分钟。

AI Skill

让 AI 帮你写调用

下载 Skill 装进你的 AI 工具(通用 Agent Skills 格式),即可按约定自动写 JS / Java 调用代码。

最小示例

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();

还没有密钥?

免费 1 天 · 月卡 ¥120 · 季卡 ¥320

前往购买页