daily-news▌
6551team/daily-news · updated Apr 8, 2026
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
Ratings
4.5★★★★★43 reviews- ★★★★★Harper Garcia· Dec 28, 2024
daily-news reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Chen Desai· Dec 8, 2024
Registry listing for daily-news matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Aisha Khanna· Dec 4, 2024
daily-news is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Chen Tandon· Nov 27, 2024
Useful defaults in daily-news — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Xiao Anderson· Nov 19, 2024
I recommend daily-news for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Zaid Kim· Nov 3, 2024
Keeps context tight: daily-news is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Harper Jackson· Oct 22, 2024
daily-news is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Amelia Shah· Oct 18, 2024
I recommend daily-news for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Aditi Srinivasan· Oct 10, 2024
Useful defaults in daily-news — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Rahul Santra· Sep 13, 2024
daily-news has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 43