Integrate AI trend insights into your apps and workflows via REST API, MCP protocol, or RSS feeds
Standard RESTful endpoints to fetch report lists, details, and trend summaries — easy to integrate anywhere
Native Model Context Protocol support — query trend reports directly from Claude Desktop
Standard RSS format output — plug into any RSS reader or automation workflow
Include your API key in the request header to access all endpoints
Authorization: Bearer rtk_YOUR_API_KEYX-API-Key: rtk_YOUR_API_KEY/api/v1/public/reportsPaginated report query with type, language, date, and category filters
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
"https://redol.ai/api/v1/public/reports?type=flash&language=en&limit=10&group=SEO"/api/v1/public/reports/:idFetch full content and trend summaries for a single report
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
"https://redol.ai/api/v1/public/reports/{REPORT_ID_OR_SLUG}"/api/v1/summariesFetch aggregated trending topics ranked by frequency
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
"https://redol.ai/api/v1/summaries?language=en&limit=5"/api/v1/public/reports/categoriesGet available report categories
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
"https://redol.ai/api/v1/public/reports/categories"type — Report type: flash | daily | weeklylanguage — Language: zh | engroup — Category filter: e.g. SEO (omit for default AI tech reports)limit — Items per page: 1-100 (default 20)page — Page number: starting from 1{
"success": true,
"data": [
{
"id": "abc123",
"title": "AI Trend Flash Report - 2026-02-21",
"reportType": "flash",
"language": "en",
"groupFilter": "SEO",
"articleCount": 45,
"sourceCount": 12,
"topTrends": [
"GPT-5",
"Claude 4",
"Open Source LLM"
],
"keyInsight": "Major breakthrough in...",
"createdAt": "2026-02-21T08:00:00Z"
}
],
"meta": {
"total": 36,
"page": 1,
"limit": 10
}
}Add the following config to your Claude Desktop settings to query trend reports via natural conversation
{
"mcpServers": {
"rss-trend": {
"url": "https://redol.ai/mcp",
"headers": {
"x-api-key": "rtk_YOUR_API_KEY"
}
}
}
}list_reportsList latest reports, filter by type, language, and category
get_reportGet full content of a single report
get_trendsGet trending topics leaderboard
list_categoriesGet available report categories (e.g. SEO)
Add the RSS URL to your reader to automatically receive the latest trend reports
https://redol.ai/rss?key=rtk_YOUR_API_KEY&type=daily&language=en&group=SEOOptional params: type (report type), language (language), group (category, e.g. SEO)
Pro users can create up to 5 API keys