跳到主要内容

给攻略站与社区的公开工具

把 GTA VI 资料放进你的页面。

复制 Fact Card 或活动状态卡代码,也可通过公开 API 与只读 Remote MCP 读取已核验资料。

Lucia 与 Jason 出现在 GTA VI An Extended Look 官方主视觉中

一段代码,直接嵌入。

推荐宽度 560 像素、高度 260 像素。复制内容会随已核验活动状态切换,并包含相邻的完整活动资料署名链接。

  • 无需账号、SDK 或访问令牌
  • 适合博客、攻略站与社区公告页
  • 官方活动信息变化后由本站统一更新

HTML 嵌入与署名链接

<iframe src="https://coastlineindex.com/embed/countdown?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=extended-look-2026" title="Unofficial status card for an official GTA VI event" width="560" height="260" loading="lazy"></iframe> <p><a href="https://coastlineindex.com/event?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=extended-look-2026">Unofficial status card for an official GTA VI event — Coastline Index</a></p>

Markdown 引用

[Unofficial status card for an official GTA VI event — Coastline Index](https://coastlineindex.com/event?utm_source=creator_embed&utm_medium=embed&utm_campaign=creator_kit&utm_content=extended-look-2026)

复制 HTML 时会生成一个随机安装 ID,只用于区分外部嵌入的首次加载,不包含账号、邮箱或站点访客身份。

响应式页面可将 iframe 的宽度改为 100%,并保持 260 像素最小高度。

让事实卡跟着资料更新。

每张卡都包含官方事实、最后更新时间、来源链接和完整资料入口;复制代码还会附上对应资料页的直接署名链接。下面三个预览就是访客实际看到的内容。

Lucia Caminos 人物事实卡

主角身份、家庭来历与故事起点,均对应 Rockstar 官方人物资料。

HTML 嵌入与署名链接

<iframe src="https://coastlineindex.com/embed/fact/lucia-caminos?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=lucia-caminos" title="Lucia Caminos 人物事实卡" width="640" height="620" loading="lazy"></iframe> <p><a href="https://coastlineindex.com/database/lucia-caminos?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=lucia-caminos">Lucia Caminos 人物事实卡 — Coastline Index</a></p>

Markdown 引用

[Lucia Caminos 人物事实卡 — Coastline Index](https://coastlineindex.com/database/lucia-caminos?utm_source=creator_embed&utm_medium=embed&utm_campaign=creator_kit&utm_content=lucia-caminos)

复制 HTML 时会生成一个随机安装 ID,只用于区分外部嵌入的首次加载,不包含账号、邮箱或站点访客身份。

Vice City 地区事实卡

城市所属与舞台定位,适合地图攻略、地区索引与社区百科。

HTML 嵌入与署名链接

<iframe src="https://coastlineindex.com/embed/fact/vice-city?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=vice-city" title="Vice City 地区事实卡" width="640" height="620" loading="lazy"></iframe> <p><a href="https://coastlineindex.com/database/vice-city?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=vice-city">Vice City 地区事实卡 — Coastline Index</a></p>

Markdown 引用

[Vice City 地区事实卡 — Coastline Index](https://coastlineindex.com/database/vice-city?utm_source=creator_embed&utm_medium=embed&utm_campaign=creator_kit&utm_content=vice-city)

复制 HTML 时会生成一个随机安装 ID,只用于区分外部嵌入的首次加载,不包含账号、邮箱或站点访客身份。

GTA VI 发售信息卡

发售日期、首发平台与数字预购预载日期,统一从本站已核验数据生成。

HTML 嵌入与署名链接

<iframe src="https://coastlineindex.com/embed/fact/release?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=release" title="GTA VI 发售信息卡" width="640" height="620" loading="lazy"></iframe> <p><a href="https://coastlineindex.com/release?utm_source=creator_embed&amp;utm_medium=embed&amp;utm_campaign=creator_kit&amp;utm_content=release">GTA VI 发售信息卡 — Coastline Index</a></p>

Markdown 引用

[GTA VI 发售信息卡 — Coastline Index](https://coastlineindex.com/release?utm_source=creator_embed&utm_medium=embed&utm_campaign=creator_kit&utm_content=release)

复制 HTML 时会生成一个随机安装 ID,只用于区分外部嵌入的首次加载,不包含账号、邮箱或站点访客身份。

其他人物、地区与资料条目也可使用同一地址格式:/embed/fact/[slug]

Coastline Index 非官方玩家资料库品牌社交卡

1200 × 630 · 82 KB

分享时,用清楚的非官方身份。

这张品牌社交卡只使用 Coastline Index 自有文字与抽象海岸线视觉,不包含 Rockstar 标识、角色或游戏截图。可用于介绍本站、更新日志或 Creator Kit。

下载品牌社交卡

读取结构化资料

五个只读 JSON 接口可直接跨域请求。响应包含更新时间;事实与变化接口还会返回统一版本、来源账本和非官方声明。

资料集合

GET /api/entities
按人物类型筛选
fetch("https://coastlineindex.com/api/entities?type=character")
  .then((response) => response.json())
  .then(({ data, meta }) => {
    console.log(data, meta.updatedAt);
  });

支持 q、type 与 status 参数。集合响应包含 data、筛选条件、数量和 updatedAt。

单条资料

GET /api/entities/[slug]
读取 Lucia 档案
fetch("https://coastlineindex.com/api/entities/lucia-caminos")
  .then((response) => response.json())
  .then(({ data }) => console.log(data.facts));

返回实体、事实、官方来源与相关条目。无效 slug 返回结构化 404 错误。

已核验事实搜索

GET /api/facts
核验 60 FPS 说法
fetch("https://coastlineindex.com/api/facts?q=60%20FPS&limit=5")
  .then((response) => response.json())
  .then(({ data }) => console.log(data.items, data.sources));

统一搜索人物事实、明确答案与传闻核验,只返回具官方或第一方商店证据的记录。

事实变化账本

GET /api/changes
读取 Beta 启动后的变化
fetch("https://coastlineindex.com/api/changes?since=2026-08-25")
  .then((response) => response.json())
  .then(({ data, meta }) => console.log(data.items, meta.historyCompleteSince));

只记录人工复核后的 GTA VI 事实旧值与新值,不混入页面工程更新或原始监控观察。

Remote MCP · Public Beta

让 AI 客户端直接读取证据。

Endpoint:POST https://coastlineindex.com/api/mcp。当前使用 MCP 2026-07-28,无需账号、API Key、OAuth、Cookie 或持久会话。

通用远程 MCP 配置示例
{
  "mcpServers": {
    "coastline-index": {
      "url": "https://coastlineindex.com/api/mcp"
    }
  }
}

不同客户端的配置字段可能不同,请把同一 HTTPS endpoint 填入其 Remote MCP URL。页面内已有的 browser WebMCP 与这个公开 Remote MCP 是两个独立入口。

search_verified_facts

搜索已核验的人物事实、明确答案与传闻结论,可限制类型、状态、剧透等级和数量。

get_entity_with_sources

按 slug 读取单个实体、符合条件的事实、相关条目与文本事实来源账本;不传输媒体文件。

get_release_and_event_status

读取发售、平台和人工维护的活动状态;时间到点不会自动宣称活动已直播。

list_verified_changes_since

按日期读取人工复核后的事实变化,不包含工程日志或 Source Change Monitor 原始观察。

内容边界
当前规范输出语言为 zh-CN,只读取站内已发布且编辑核验的数据;编辑核验可能由代理辅助,不等同于人工或母语审校。不做外部网页抓取,也不暴露原始监控结果。
历史边界
事实变化账本自 2026-08-25 起完整;更早记录只是人工整理子集。
安全边界
只有四个只读、无破坏性工具;没有写操作、Prompt、账号、购买或用户委托能力。工具调用在每个 Cloudflare 边缘位置共享每分钟 60 次配额;不按 IP、账号或设备建立计数键。
证据边界
每项结果保留 Rockstar 或第一方商店来源。若数据冲突,以官方来源为准。

A2A · Public Beta

让代理直接请求已核验答案。

Endpoint:POST https://coastlineindex.com/api/a2a。交互能力采用 A2A 1.0 JSON-RPC 的SendMessage,输入为纯文本,响应同时提供可读摘要和完整证据 JSON;协议管理方法中的 ListTasks 返回空列表,GetTask 与 CancelTask 对不存在的任务返回规范错误。 匿名请求在每个 Cloudflare 边缘位置共享每分钟 60次配额,不按 IP、账号或设备建立计数键。

A2A SendMessage 示例
curl -sS https://coastlineindex.com/api/a2a \
  -H 'Content-Type: application/json' \
  -H 'A2A-Version: 1.0' \
  --data '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "SendMessage",
    "params": {
      "message": {
        "messageId": "example-1",
        "role": "ROLE_USER",
        "parts": [{ "text": "GTA VI 的 PC 版本官宣了吗?" }]
      }
    }
  }'
真实能力
检索与 REST、MCP 相同的编辑核验资料,不调用外部搜索,也不把生成内容写回事实库。
无状态
只返回直接 Message;不创建持久 Task,不保存请求正文、contextId 或 messageId。
能力边界
不支持流式响应、推送通知、账号委托、购买、写操作、文件或任意 URL。
可安装说明
Agent Skills 清单带原始文件 SHA-256,客户端可先校验再加载使用规则。

引用时请保留来源。

数据来自 Rockstar Games、Newswire 与第一方商店。使用时请保留 Coastline Index 链接及相邻的官方来源,不要把公开画面整理写成 Rockstar 原文。