POST/v1/demographics/compare
Demographic profiles for several zips side by side.
[ OPTIONS ]
| Name | Type | Required | Description |
|---|---|---|---|
zips | string[] (body) | Yes | 2–10 zips to compare. |
[ EXAMPLE REQUEST ]
curl -X POST "https://atlasblock.dev/api/v1/demographics/compare" \ -H "Content-Type: application/json" \ -d '{"zips":["28203","10001"]}'
[ 200 OK ]
{
"status": "success",
"data": {
"count": 2,
"results": [
{
"zip": "28203"
},
{
"zip": "10001"
}
]
}
}[ TRY IT ]Open playground →
POST/v1/demographics/compare
[ BODY · JSON ]
zips· string[] (body) · required — 2–10 zips to compare.
[ CURL ]
curl -X POST "https://atlasblock.dev/api/v1/demographics/compare" \ -H "Authorization: Bearer $ATLASBLOCK_API_KEY" \ -H "Content-Type: application/json" \ -d '{"zips":["28203","10001"]}'
[ EVERY REQUEST ]
Send an Authorization: Bearer key against the base URL https://atlasblock.dev/api. Every call counts toward your plan quota. See the overview for authentication, rate limits, and status codes.
[ MORE IN DEMOGRAPHICS ]
