GET/v1/neighborhood/ratings
Ratings only: fastest, cache-first, and never triggers an AI call.
[ OPTIONS ]
| Name | Type | Required | Description |
|---|---|---|---|
zip | string | No | US zip code. Required unless address is given. |
address | string | No | Full street address, geocoded to a zip. |
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/neighborhood/ratings?zip=28203"[ 200 OK ]
{
"status": "success",
"data": {
"zip": "28203",
"city": "Charlotte",
"state": "NC",
"ratings": {
"overall": 7.4,
"walkability": 8.3,
"safety": 6.1,
"schools": 6.8,
"affordability": 5.9,
"nightlife": 6.2
},
"metadata": {
"last_updated": "2026-07-26",
"cache_hit": true
}
}
}[ TRY IT ]Open playground →
GET/v1/neighborhood/ratings?zip=28203
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/neighborhood/ratings?zip=28203" \ -H "Authorization: Bearer $ATLASBLOCK_API_KEY"
[ 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.
