Access and API keys
Maverick Data reviews each organization before enabling API access. Submit the request form with your work email, company website, intended use, expected states and volume, and whether your workflow shares or resells records.
Receiving a key
After approval, the Maverick team provisions your allowed states and monthly allowance. Your API key is delivered once through an agreed private channel. It is not included in browser URLs, application logs, or support messages.
Store the key in a secrets manager and expose it to your server as an environment variable. Do not embed it in browser or mobile application code.
export MAVERICK_DATA_API_KEY="your-key-from-maverick"Confirm the key and its state scope before integrating:
curl -H "X-API-Key: $MAVERICK_DATA_API_KEY" \
"https://api.themaverickdata.com/api/v1/me"Rotation and revocation
Ask your Maverick contact to rotate a key if it may have been exposed. Rotation
issues a replacement and immediately disables the previous key. Revocation
disables every active key for the customer. A disabled key returns 401.