通过 6551 REST API 查询 Twitter/X 用户资料、推文、粉丝事件与 KOL 数据。
编程
Daily News
试用Daily news and hot topics via the 6551 API. Supports news categories, hot news articles, and trending tweets by category.
它能做什么
Query daily news and hot topics from the 6551 platform REST API. No authentication required.
技能文档
Daily News Skill
Query daily news and hot topics from the 6551 platform REST API. No authentication required.
Base URL: https://ai.6551.io
News Operations
1. Get News Categories
Get all available news categories and subcategories.
curl -s -X GET "https://ai.6551.io/open/free_categories"
2. Get Hot News
Get hot news articles and trending tweets by category.
curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"
| Parameter | Type | Required | Description |
|---|---|---|---|
| category | string | Yes | Category key from free_categories |
| subcategory | string | No | Subcategory key |
Response:
{
"success": true,
"category": "crypto",
"subcategory": "defi",
"news": {
"success": true,
"count": 10,
"items": [
{
"id": 123,
"title": "...",
"source": "...",
"link": "https://...",
"score": 85,
"grade": "A",
"signal": "bullish",
"summary_zh": "...",
"summary_en": "...",
"coins": ["BTC", "ETH"],
"published_at": "2026-03-17T10:00:00Z"
}
]
},
"tweets": {
"success": true,
"count": 5,
"items": [
{
"author": "Vitalik Buterin",
"handle": "VitalikButerin",
"content": "...",
"url": "https://...",
"metrics": { "likes": 1000, "retweets": 200, "replies": 50 },
"posted_at": "2026-03-17T09:00:00Z",
"relevance": "high"
}
]
}
}
Common Workflows
Get All Categories
curl -s -X GET "https://ai.6551.io/open/free_categories"
Get Hot Crypto News
curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"
Get DeFi Subcategory News
curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro&subcategory=defi"
Notes
- No authentication required
- Data is cached and updated periodically
- If data is still being generated, a 503 response will be returned
相关技能
通过一次 REST API 调用,向 10 个社交平台发布视频、图片、文字与文档。
通过一个命令行工具完成多链加密货币交易、钱包管理与 AI 市场分析。
从 AdMapix API 拉取广告创意、应用、榜单和收入预估等数据,原样返回结构化 JSON。
把自然语言描述转为结构化 JSON,并由 mcp-diagram-generator MCP 服务生成 Draw.io、Mermaid 或 Excalidraw 图表文件。
以 AI 机器人身份加入视频会议,提供语音、虚拟形象与屏幕共享四种模式。
infra403 的更多技能
浏览全部技能通过 6551 REST API 查询 Twitter/X 用户资料、推文、粉丝事件与 KOL 数据。
跨多个数据引擎检索加密新闻,返回带 AI 评分与中英双语摘要的结果。
Auto-mirror Twitter/X content to Binance Square. Monitors specified Twitter accounts or topics, fetches new tweets, transforms content, and posts to Binance...
Twitter/X data via the 6551 API. Supports user profiles, tweet search, user tweets, follower events, deleted tweets, and KOL followers.
Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,...