Skip to main content
Generate a key, confirm it works, then run a real “follow the smartest traders” workflow.

1. Generate your API key

API access is bundled with the Insider subscription; current pricing is on that page.
1

Sign up or log in

2

Subscribe to Pro

Pick the Insider plan on Pricing.
3

Generate your key

On Developers, click Generate Key. It’s shown once, so copy it now. You can regenerate a lost key, but the old one stops working.
Keys look like oxi_sk_live_ followed by 64 hex characters.
Export it once so the rest of this page just works:

2. Confirm the key works

status: "ok" means you’re wired up.
Browser apps can call REST endpoints under https://api.0xinsider.com/api/v1/* directly from any origin with Authorization: Bearer ...; do not send cookies or credentials: "include". Remote MCP at /api/v1/mcp still validates Origin against the 0xinsider/localhost allowlist. Browser JavaScript can read X-RateLimit-*, Retry-After, ETag, X-Request-Id, X-Request-Cost, X-Batch-RateLimit-*, Mcp-Session-Id, and X-Mcp-Error-Code response headers. Account/key-management routes such as /api/keys stay first-party-only and credentialed.

3. Follow the smartest traders

Not “who’s #1,” but “what are the best traders doing right now, and am I early?”

Step A: Pull the top 5 S-grade traders

Each entry has the wallet address (id), grade, score, P&L, and strategy. Pick one to follow.

Step B: Look up that trader’s full profile

The trader endpoint takes a wallet address or a known username:
You get their realized P&L, win rate, category strengths, and current open positions.

Step C: See what whales are buying now

A-grade or better, last 50 trades:
Layer filters. A-grade or better, crypto only, $10k+ notional:

Step D: Drill into one market

Grab the condition_id from a trade you like (raw hex, not the prefixed mkt_... form), then:
Market Intel returns the smart-money breakdown: buy volume vs sell volume from graded traders, top positions, and which side has conviction. The loop: leaderboard -> trader profile -> whale trades -> market intel. Wire it to a cron, a chatbot, or a dashboard.

Same workflow, in code

Lower the call count with a batch endpoint

Already have the wallet addresses or usernames you care about? Fetch them in one call:
Batch reads return the same per-item shape, with per-item error fields when an address fails. They count against a separate batch-item rate-limit budget. See Rate Limits.

Next

Local MCP Server

Skip the HTTP plumbing. Give your AI agent the same tools directly.

TypeScript Client

Use the repo-owned source client with typed errors and expand helpers.

Trader Grades

What S, A, B, C, D, F actually mean.

Errors & Rate Limits

What to do when a request fails.