Atlasblock API

POST/v1/demographics/compare

Demographic profiles for several zips side by side.

[ OPTIONS ]
NameTypeRequiredDescription
zipsstring[] (body)Yes2–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"
      }
    ]
  }
}
POST/v1/demographics/compare
[ BODY · JSON ]
  • zips · string[] (body) · required2–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 ]