Get your API key and make your first call in under 5 minutes.
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"}'
List prediction markets
curl https://api.rekko.ai/v1/markets \ -H "Authorization: Bearer YOUR_API_KEY"
Get an AI analysis
# 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"