/install coinmeta-api
CoinMeta API
查询加密货币快讯数据。
Base URL: https://api.coinmeta.com
Auth: Header X-Api-Key: $COINMETA_API_KEY
Response format: {"code": 200, "data": [...], "msg": "success"} — code 200 = success
快讯列表
Endpoint: POST https://api.coinmeta.com/open/v1/newsflash/list
curl示例:
curl -s -X POST -H "Accept:*/*" \
-H "X-Api-Key: ${COINMETA_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"page":1,"size":10}' \
"https://api.coinmeta.com/open/v1/newsflash/list"
请求参数:
| 参数 | 类型 | 说明 |
|---|---|---|
| page | int | 页码,默认1 |
| size | int | 每页数量,默认10 |
响应字段:
| 字段 | 类型 | 说明 |
|---|---|---|
| id | int | 快讯ID |
| views | int | 浏览量 |
| title | string | 标题 |
| content | string | 内容(HTML) |
| createdAt | int | 创建时间戳 |
关键词搜索
Endpoint: POST https://www.coinmeta.com/open/v1/newsflash/search
curl -s -X POST -H "Accept:*/*" \
-H "X-Api-Key: ${COINMETA_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"page":1,"size":10,"keyword":"btc"}' \
"https://www.coinmeta.com/open/v1/newsflash/search"
请求参数:
| 参数 | 类型 | 说明 |
|---|---|---|
| page | int | 页码,默认1 |
| size | int | 每页数量,默认10 |
| keyword | string | 搜索关键词,必填 |
输出格式:
📰 加密货币快讯 · 第[N]页
1. [标题]
浏览: [views] · [时间]
[摘要...]
2. [标题]
浏览: [views] · [时间]
[摘要...]
...
解析规则:
createdAt是Unix时间戳,转换为可读时间content包含HTML标签,需去除标签显示纯文本
Error Handling
| code | msg | 说明 |
|---|---|---|
| 401 | Missing API key | API key未设置,请设置COINMETA_API_KEY环境变量 |
| 401 | Invalid API key | API key无效,请检查是否正确 |
| 422 | 参数错误 | 请求参数有误,检查page/size等参数 |
| != 200 | 其他 | 请求失败,显示msg内容 |
| network error | - | 提示重试 |
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install coinmeta-api - After installation, invoke the skill by name or use
/coinmeta-api - Provide required inputs per the skill's parameter spec and get structured output
What is 币界网API?
查询加密货币快讯。触发场景:查询币圈快讯、获取加密货币新闻、crypto news、币圈资讯。 It is an AI Agent Skill for Claude Code / OpenClaw, with 137 downloads so far.
How do I install 币界网API?
Run "/install coinmeta-api" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 币界网API free?
Yes, 币界网API is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 币界网API support?
币界网API is cross-platform and runs anywhere OpenClaw / Claude Code is available (darwin, linux, win32).
Who created 币界网API?
It is built and maintained by CoinMeta (@semithin); the current version is v1.0.0.