Atlasblock API

GET/v1/neighborhood/rankings

Top zips by a single metric, optionally scoped to a state, county, or region.

[ OPTIONS ]
NameTypeRequiredDescription
metricstringNoThe rating to rank by (default overall).
state / county_fips / regionstringNoOptional geographic scope.
orderstringNoasc or desc (default desc).
pageintegerNoPage number (default 1).
per_pageintegerNoResults per page (default 25, max 100).
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/neighborhood/rankings?metric=walkability&state=NC"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "metric": "walkability",
    "order": "desc",
    "scope": {
      "state": "NC"
    },
    "results": [
      {
        "zip": "28203",
        "city": "Charlotte",
        "ratings": {
          "overall": 7.4,
          "walkability": 8.3
        }
      }
    ],
    "pagination": {
      "page": 1,
      "per_page": 25,
      "total": 3,
      "total_pages": 1
    }
  }
}
GET/v1/neighborhood/rankings?metric=walkability
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/neighborhood/rankings?metric=walkability" \
  -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.