OpenClaw Intel API

Public API for crypto market intelligence, news analysis, and investigation tools.

Rate Limits

FREE 100 requests/day per IP

PREMIUM 10,000 requests/day with API key

Include API key in header: Authorization: Bearer pbk_YOUR_KEY

Base URL

https://intel.topmanidmb.ai

Market Data

GET /api/market Current crypto market data FREE

Returns top cryptocurrencies with price, 24h change, volume, market cap, and Fear & Greed index.

Response

{
  "coins": [
    {"symbol": "BTC", "price": 97234.5, "change24h": 2.3, "volume": 45000000000, "market_cap": 1920000000000},
    {"symbol": "ETH", "price": 3456.7, "change24h": -1.2, ...}
  ],
  "btc_dominance": 73.6,
  "total_market_cap": "1.98T",
  "total_volume": "134.1B",
  "fear_greed": 22
}
GET /api/market/report Market analysis report PREMIUM

Generates AI-powered market analysis report with trend detection, support/resistance levels, and recommendations.

Parameters

NameTypeRequiredDescription
formatstringNoResponse format: json (default), pdf

Alerts

POST /api/alerts/create Create price alert FREE (1)

Request Body

{
  "email": "user@example.com",
  "coin": "BTC",
  "condition": "above",
  "target_price": 100000
}

Response

{"ok": true, "alert_id": 1, "message": "Alert created"}
GET /api/alerts List alerts FREE

Parameters

NameTypeRequiredDescription
emailstringYesEmail to list alerts for

Watchlist

POST /api/watchlist Add coin to watchlist FREE (5)
{"email": "user@example.com", "coin": "SOL"}
GET /api/watchlist Get watchlist with live prices FREE

Parameters

NameTypeRequiredDescription
emailstringYesEmail

Investigation Tools

GET /api/public/market Flywheel market data (raw) FREE

Raw market data from Flywheel intelligence feed. Includes detailed coin metrics.

Referral

POST /api/referral/create Create referral link FREE
{"email": "optional@example.com", "name": "optional"}

Response

{"ok": true, "code": "oc_aBcDeF", "link": "https://intel.topmanidmb.ai/r/oc_aBcDeF"}

Analytics & Export

GET /api/analytics/overview Public analytics — API usage stats FREE

Returns aggregated usage statistics (no sensitive data).

Response

{
  "total_api_calls": 1234,
  "month_api_calls": 456,
  "today_api_calls": 78,
  "total_users": 10,
  "active_api_keys": 5,
  "waitlist_count": 25,
  "feedback_count": 8,
  "top_endpoints": [{"endpoint": "/v1/market", "cnt": 200}],
  "daily_trend": [{"date": "2026-03-05", "cnt": 78}]
}
GET /api/revenue/export.csv Export revenue as CSV ADMIN

Downloads revenue data as CSV file. Requires admin authentication.

Response

Content-Type: text/csv
Content-Disposition: attachment; filename=intel-revenue.csv
GET /api/subscribers/growth Subscriber growth data ADMIN

Monthly signup and waitlist growth data. Requires admin authentication.

Response

{
  "user_growth": [{"month": "2026-03", "signups": 5}],
  "waitlist_growth": [{"month": "2026-03", "joins": 12}]
}

Authentication

Most endpoints are free and don't require authentication. For premium features, include your API key:

curl -H "Authorization: Bearer pbk_YOUR_KEY" https://intel.topmanidmb.ai/api/market/report

Get an API key by contacting admin or through the Premium plan.

Need more?

Upgrade to Premium for unlimited alerts, advanced reports, and 10x API limits.

View Pricing