Quickstart
Counts and previews do not use your monthly contact allowance. Rows delivered in completed exports do.
Dashboard
- Sign in to your organization.
- Choose an allowed state.
- Apply the filters you need.
- Review the count and up to 50 preview rows.
- Choose the fields for your CSV and create the export.
- Download the file when the export is ready.
API
Set your API key, then confirm your client and allowed states:
curl -H "X-API-Key: $MAVERICK_DATA_API_KEY" \
"https://api.themaverickdata.com/api/v1/me"Count and preview an audience:
curl -H "X-API-Key: $MAVERICK_DATA_API_KEY" \
"https://api.themaverickdata.com/api/v1/contacts/count?state=TX&zip5=78701,78702&renewal_month=8&has_phone=true"
curl -H "X-API-Key: $MAVERICK_DATA_API_KEY" \
"https://api.themaverickdata.com/api/v1/contacts?state=TX&zip5=78701,78702&renewal_month=8&has_phone=true&limit=25"Create an export:
curl -X POST "https://api.themaverickdata.com/api/v1/exports" \
-H "X-API-Key: $MAVERICK_DATA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"state": "TX",
"max_rows": 50000,
"idempotency_key": "tx-aug-phone-001",
"zip5": "78701,78702",
"has_phone": true,
"renewal_month": "8"
}'Poll the returned job ID, then download the CSV:
curl -H "X-API-Key: $MAVERICK_DATA_API_KEY" \
"https://api.themaverickdata.com/api/v1/exports/00000000-0000-0000-0000-000000000000"
curl -L -H "X-API-Key: $MAVERICK_DATA_API_KEY" \
-o tx-export.csv \
"https://api.themaverickdata.com/api/v1/exports/00000000-0000-0000-0000-000000000000/download"Ready downloads expire after 72 hours. See Endpoints for export history and pagination.