Pro Only

Built for Developers

Integrate AI trend insights into your apps and workflows via REST API, MCP protocol, or RSS feeds

REST API

Standard RESTful endpoints to fetch report lists, details, and trend summaries — easy to integrate anywhere

MCP Protocol

Native Model Context Protocol support — query trend reports directly from Claude Desktop

RSS Feed

Standard RSS format output — plug into any RSS reader or automation workflow

Authentication

Include your API key in the request header to access all endpoints

Header Authentication
Authorization: Bearer rtk_YOUR_API_KEY
Or use X-API-Key header
X-API-Key: rtk_YOUR_API_KEY

REST API Endpoints

GET/api/v1/public/reports

Paginated report query with type, language, date, and category filters

List Reports
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
  "https://redol.ai/api/v1/public/reports?type=flash&language=en&limit=10&group=SEO"
GET/api/v1/public/reports/:id

Fetch full content and trend summaries for a single report

Get Report Detail
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
  "https://redol.ai/api/v1/public/reports/{REPORT_ID_OR_SLUG}"
GET/api/v1/summaries

Fetch aggregated trending topics ranked by frequency

Get Trend Summary
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
  "https://redol.ai/api/v1/summaries?language=en&limit=5"
GET/api/v1/public/reports/categories

Get available report categories

List Categories
curl -H "Authorization: Bearer rtk_YOUR_API_KEY" \
  "https://redol.ai/api/v1/public/reports/categories"

Query Parameters

type — Report type: flash | daily | weekly
language — Language: zh | en
group — 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
Response Example
{
  "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
  }
}

MCP Integration Guide

Add the following config to your Claude Desktop settings to query trend reports via natural conversation

Claude Desktop Config
{
  "mcpServers": {
    "rss-trend": {
      "url": "https://redol.ai/mcp",
      "headers": {
        "x-api-key": "rtk_YOUR_API_KEY"
      }
    }
  }
}

Available Tools

list_reports

List latest reports, filter by type, language, and category

get_report

Get full content of a single report

get_trends

Get trending topics leaderboard

list_categories

Get available report categories (e.g. SEO)

RSS Feed

Add the RSS URL to your reader to automatically receive the latest trend reports

RSS URL
https://redol.ai/rss?key=rtk_YOUR_API_KEY&type=daily&language=en&group=SEO

Optional params: type (report type), language (language), group (category, e.g. SEO)

Get Your API Key

Pro users can create up to 5 API keys