Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.0xinsider.com/llms.txt

Use this file to discover all available pages before exploring further.

The 0xinsider API gives you programmatic access to the same intelligence powering the 0xinsider terminal — trader grades, whale trade signals, smart money flow, and insider detection across Polymarket and Kalshi. The same data is also available through the live @0xinsider/mcp package for Claude Code, Cursor, Codex, Gemini CLI, and other MCP clients.

What you can build

  • Trading bots that react to whale trades and smart money signals in real-time
  • AI agents that analyze trader performance and market intelligence
  • Research tools that pull leaderboard data and historical patterns
  • Dashboards that visualize smart money flow across prediction markets

Endpoints

Get Trader

Trader grades (S through F), P&L, win rate, strategy detection

Whale Trades

Large trades with signal scoring, filterable by grade and category

Positions

Current position cards with trader, market, value, side, and freshness metadata

Position Timeline

Per-market trader fills with server-computed running amount and average entry price

Explore Markets

Browse whale-active titled markets by category, platform, status, and sort order

Market Intel

Smart money flow direction, buy/sell volumes, top positions

Leaderboard

Top traders ranked by score with cursor pagination

Search Markets

Find markets by keyword with category and status filters

Insider Radar

Suspicious trading patterns — pre-resolution accumulation, unusual timing

Remote MCP

Streamable HTTP MCP endpoint for agents that need remote tool access

Quick example

curl -H "Authorization: Bearer oxi_sk_live_..." \
  https://api.0xinsider.com/api/v1/leaderboard?limit=3
{
  "object": "list",
  "data": [
    {
      "id": "trd_0x863...",
      "username": "RepTrump",
      "grade": "S",
      "score": 97.94,
      "pnl": 7532409.67,
      "win_rate": 1.0
    }
  ],
  "has_more": true,
  "next_cursor": "97.94_0x863..."
}

Base URL

https://api.0xinsider.com/api/v1/

Authentication

API access is bundled with the Insider subscription ($89/mo). Generate your API key at 0xinsider.com/developers.

Get started

Generate a key and make your first request in 2 minutes

MCP Server

Install the live npm package for Claude Code, Cursor, Codex, Gemini CLI, and other MCP clients