← 返回 Skills 市场
rayniubi

FollowinOpenAPI

作者 ray · GitHub ↗ · v1.0.0
darwinlinuxwin32 ✓ 安全检测通过
285
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install followin-openapi
功能描述
Documents Followin OpenAPI endpoints for agent integration. Use when calling feed APIs, channel feeds, trending, category feeds, or integrating with Followin...
使用说明 (SKILL.md)

Followin OpenAPI

Agent 调用 Followin 信息流接口时使用本 skill。

说明:「频道」也称为「情报」或「情报中心」。

Base URL

https://api.followin.io

鉴权

所有 OpenAPI 请求需携带 API Key,支持两种方式:

方式 示例
Query 参数 ?apikey=YOUR_API_KEY
Header Authorization: YOUR_API_KEY

支持的语言

以下接口的 lang 参数支持以下语言代码:

代码 说明
zh-Hans 简体中文
zh-Hant 繁体中文
en 英语
vi 越南语
ko 韩语

接口列表

1. 热榜

获取今日热榜 feed 列表。

请求
GET /open/feed/list/trending

参数 必填 说明
type 类型:hot_news(默认)、pop_info
count 数量,默认 15
need_bind_tag 是否仅返回有标签的,默认 false
lang 语言:zh-Hanszh-Hantenviko

响应

{
  "list": [ { "id", "title", "content", "publish_time", "page_url", "related_feeds", ... } ],
  "update_time": 1234567890
}

2. 分类推荐

按分类获取推荐 feed 列表。

请求
GET /open/feed/:category_name

路径参数 说明
category_name 分类名:news(快讯)、articles(文章)
Query 参数 必填 说明
count 每页数量,默认 10,最大 30
last_cursor 分页游标(时间戳),默认 0
only_important 仅重要快讯(news 有效),默认 false
no_ad 不展示广告,默认 false
lang 语言:zh-Hanszh-Hantenviko

响应

{
  "list": [ { "id", "title", "content", "publish_time", "page_url", ... } ],
  "has_more": true,
  "last_cursor": "1234567890",
  "last_source": "biz",
  "rec_request_id": ""
}

3. 指定频道信息流

获取单个频道(情报/情报中心)的信息流。

请求
GET /open/channel/feeds

参数 必填 说明
code 频道 code
count 每页数量,默认 20,最大 30
last_cursor 分页游标,默认 0
lang 语言:zh-Hanszh-Hantenviko

支持的频道 code

  • macro - 宏观
  • listing_delisting - 上币/下币
  • altcoin_update - 山寨币更新
  • quant_signal - 量化信号
  • live_trading_signal - 实盘信号
  • token_unlock - 代币解锁
  • fund_movement - 资金异动
  • all_potential_airdrop - 空投教程
  • airdrop_issue - 领取通知
  • kol_post - KOL 动态
  • trading_signal - 点位喊单
  • trading_strategy - 交易策略
  • meme_discover - 发现 meme
  • meme_opportunity - meme 交易机会
  • alpha_aggregator - Alpha 聚合器
  • exchange_coin_update - 交易所上币动态

响应

{
  "list": [ { "id", "title", "content", "publish_time", "page_url", ... } ],
  "has_more": true,
  "last_cursor": "20"
}

4. 所有频道 feed_card 信息流

获取支持 feed_card 的频道(情报/情报中心)混合信息流(含卡片)。

请求
GET /open/channel/feeds/card

参数 必填 说明
count 每页数量,默认 20,最大 30
last_cursor 分页游标,默认 0
lang 语言:zh-Hanszh-Hantenviko

响应

{
  "list": [
    {
      "id": 123,
      "title": "...",
      "content": "...",
      "publish_time": 1234567890,
      "page_url": "https://...",
      "feed_card": {
        "card_type": "f1_news",
        "fields": [ { "key", "value", "key_text", "value_text" } ],
        "show_feed": true
      }
    }
  ],
  "has_more": true,
  "last_cursor": "20"
}

分页

  • 首次请求:last_cursor=0 或不传
  • 后续请求:使用上一页返回的 last_cursor
  • has_more=false 表示无更多数据

curl 示例

# 1. 热榜
curl -X GET "https://api.followin.io/open/feed/list/trending?type=hot_news&count=15&lang=en&apikey=YOUR_API_KEY"

# 2. 分类推荐(快讯 / 文章)
curl -X GET "https://api.followin.io/open/feed/news?count=20&lang=en&apikey=YOUR_API_KEY"
curl -X GET "https://api.followin.io/open/feed/articles?count=20&last_cursor=0&lang=zh-Hans" \
  -H "Authorization: YOUR_API_KEY"

# 3. 指定频道(macro)
curl -X GET "https://api.followin.io/open/channel/feeds?code=macro&count=20&last_cursor=0&lang=en&apikey=YOUR_API_KEY"

# 4. 所有频道 feed_card
curl -X GET "https://api.followin.io/open/channel/feeds/card?count=20&last_cursor=0&lang=en&apikey=YOUR_API_KEY"

# 5. 分页(使用上一页返回的 last_cursor)
curl -X GET "https://api.followin.io/open/channel/feeds/card?count=20&last_cursor=20&lang=zh-Hans" \
  -H "Authorization: YOUR_API_KEY"
安全使用建议
This skill is a documentation helper and appears coherent. Before installing, verify you intend to call api.followin.io and that the service is legitimate. If you obtain an API key to use with Followin, prefer sending it in an Authorization header rather than as a query parameter (query parameters can be logged or leaked via referer headers). Installing curl via Homebrew is harmless on most systems but may be unnecessary if curl is already present. As always, never share your API keys publicly and confirm TLS (https) is used when calling the API.
功能分析
Type: OpenClaw Skill Name: followin-openapi Version: 1.0.0 The skill bundle is purely descriptive, documenting the Followin OpenAPI endpoints and providing `curl` examples for `GET` requests. It requires `curl` as a prerequisite, which is installed via `brew`. There is no evidence of malicious intent, data exfiltration, unauthorized execution, persistence, or prompt injection attempts within the `_meta.json` or `SKILL.md` files. The `curl` examples are illustrative and do not contain any harmful commands or patterns.
能力评估
Purpose & Capability
Name and description state it documents Followin OpenAPI endpoints; the SKILL.md contains only endpoint docs, parameters, responses, and curl examples. Requiring curl and providing a brew install for curl is coherent with the stated purpose (curl examples). No unrelated binaries, env vars, or credentials are requested.
Instruction Scope
The runtime instructions are limited to API documentation and example requests to https://api.followin.io. They do not direct the agent to read local files, environment variables, other services, or transmit data to unexpected endpoints. The examples explicitly show passing an API key via query or Authorization header, which aligns with the documented authentication method.
Install Mechanism
Install spec only offers a brew formula for curl. This is reasonable, but installing curl via brew may be redundant on many systems (curl is commonly present). The install source (Homebrew) is a standard package manager; no arbitrary downloads or archive extraction are used.
Credentials
The skill declares no required environment variables or credentials. The documentation references an API key as required by the Followin API, which is appropriate and limited in scope. No unrelated secrets or config paths are requested.
Persistence & Privilege
always is false and the skill does not request persistent system or agent-wide privileges. There are no instructions to modify other skills or system-wide configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install followin-openapi
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /followin-openapi 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the Followin OpenAPI skill. - Documents major Followin OpenAPI endpoints for agent integration: - Trending feed list - Category-based recommendations - Single channel feeds (with extensive channel codes) - Mixed-channel feed_card endpoints - Provides API authentication options and supported languages. - Includes pagination instructions and curl usage examples. - Details request/response formats for each endpoint.
元数据
Slug followin-openapi
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

FollowinOpenAPI 是什么?

Documents Followin OpenAPI endpoints for agent integration. Use when calling feed APIs, channel feeds, trending, category feeds, or integrating with Followin... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 285 次。

如何安装 FollowinOpenAPI?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install followin-openapi」即可一键安装,无需额外配置。

FollowinOpenAPI 是免费的吗?

是的,FollowinOpenAPI 完全免费(开源免费),可自由下载、安装和使用。

FollowinOpenAPI 支持哪些平台?

FollowinOpenAPI 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux, win32)。

谁开发了 FollowinOpenAPI?

由 ray(@rayniubi)开发并维护,当前版本 v1.0.0。

💬 留言讨论