Skip to main content
1

Sign up for a free API key

curl -X POST https://api.rekko.ai/v1/customers/signup \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com", "name": "Your Name"}'
Your API key is shown only once in the signup response. Store it securely — you cannot retrieve it later.
2

List prediction markets

curl https://api.rekko.ai/v1/markets \
  -H "Authorization: Bearer YOUR_API_KEY"
3

Get an AI analysis

Analysis runs a deep research pipeline (30-90 seconds). Trigger it, then poll for completion.
# 1. Trigger analysis
curl -X POST https://api.rekko.ai/v1/markets/kalshi/KXFED-26MAR19/analyze \
  -H "Authorization: Bearer YOUR_API_KEY"

# 2. Poll status (use the analysis_id from step 1)
curl https://api.rekko.ai/v1/markets/kalshi/KXFED-26MAR19/analyze/abc123/status \
  -H "Authorization: Bearer YOUR_API_KEY"

# 3. Get the completed analysis
curl https://api.rekko.ai/v1/markets/kalshi/KXFED-26MAR19/analysis \
  -H "Authorization: Bearer YOUR_API_KEY"

What’s next

Pricing & Tiers

Understand what each tier unlocks.

Trading Signals

Get actionable signals with position sizing.

MCP Plugin

Use Rekko directly in your AI coding assistant.