Skip to main content

Maverick Intelligence API

The Maverick Intelligence API gives you programmatic access to your identified website visitors, companies, behavioral events, and analytics. Use it to build custom integrations, sync data to your warehouse, or power automations.

What you can do

  • List people — fetch identified visitors with filtering and pagination
  • Get person details — look up a specific visitor by ID
  • Browse events — see page views, clicks, and scrolls per person
  • List companies — fetch companies identified from your visitors
  • Get statistics — pull dashboard-level analytics

Quick start

  1. Get an API key from your Maverick dashboard
  2. Make your first request:
curl -H "X-API-Key: mk_live_your_key_here" \
  https://api.maverickintelligence.co/v1/people?limit=10
  1. Paginate through results using the nextCursor from the response:
curl -H "X-API-Key: mk_live_your_key_here" \
  "https://api.maverickintelligence.co/v1/people?limit=10&cursor=eyJQSy..."

Base URL

https://api.maverickintelligence.co
All endpoints are prefixed with /v1/.

Response format

Every list endpoint returns data in the same format:
{
  "data": [...],
  "pagination": {
    "limit": 50,
    "count": 50,
    "nextCursor": "eyJQSy..."
  }
}
When nextCursor is absent, you’ve reached the last page.