cURL examples for the Maverick Intelligence API
mk_live_your_key_here
curl https://api.maverickintelligence.co/v1/health
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people?limit=10"
# First page curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people?limit=50" # Next page (use nextCursor from previous response) curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people?limit=50&cursor=eyJQSy..."
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people?hot_leads_only=true"
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people?since=2026-03-01"
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people/abc123"
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people/abc123/events?limit=100"
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/companies?limit=50"
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/companies/xyz789"
curl -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/stats"
curl -v -H "X-API-Key: mk_live_your_key_here" \ "https://api.maverickintelligence.co/v1/people?limit=1" 2>&1 | grep -i "x-ratelimit\|retry-after\|x-request-id"