Skip to Content
APIAuthentication

Authentication

Send your API key in the X-API-Key header.

curl -H "X-API-Key: $MAVERICK_DATA_API_KEY" \ "https://api.themaverickdata.com/api/v1/me"

Confirm identity

GET /api/v1/me returns your client ID and allowed states.

{ "client_id": "org_example", "allowed_states": ["TX"] }

Authentication errors

  • 401 means the key is missing or invalid.
  • 403 means the key cannot access the requested state or operation.