daily-news
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseDaily News Skill
Daily News Skill
Query daily news and hot topics from the 6551 platform REST API. No authentication required.
Base URL:
https://ai.6551.io从6551平台REST API查询每日新闻和热门话题。无需身份验证。
Base URL:
https://ai.6551.ioNews Operations
新闻操作
1. Get News Categories
1. 获取新闻分类
Get all available news categories and subcategories.
bash
curl -s -X GET "https://ai.6551.io/open/free_categories"获取所有可用的新闻分类和子分类。
bash
curl -s -X GET "https://ai.6551.io/open/free_categories"2. Get Hot News
2. 获取热点新闻
Get hot news articles and trending tweets by category.
bash
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:
json
{
"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"
}
]
}
}按分类获取热点新闻文章和热门推文。
bash
curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"| 参数 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| category | string | 是 | 来自free_categories的分类键值 |
| subcategory | string | 否 | 子分类键值 |
响应:
json
{
"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
获取所有分类
bash
curl -s -X GET "https://ai.6551.io/open/free_categories"bash
curl -s -X GET "https://ai.6551.io/open/free_categories"Get Hot Crypto News
获取加密货币热点新闻
bash
curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"bash
curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro"Get DeFi Subcategory News
获取DeFi子分类新闻
bash
curl -s -X GET "https://ai.6551.io/open/free_hot?category=macro&subcategory=defi"bash
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
- 无需身份验证
- 数据会被缓存并定期更新
- 如果数据仍在生成中,将返回503响应