Atlasblock API

GET/v1/walkability

Per-census-block-group walkability for a zip, plus a min/max/avg summary.

[ OPTIONS ]
NameTypeRequiredDescription
zipstringYesUS zip code.
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/walkability?zip=28203"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "zip": "28203",
    "block_group_count": 9,
    "walkability_index": {
      "avg": 15.4,
      "min": 11.2,
      "max": 18.7
    },
    "block_groups": [
      {
        "census_block_group": "371190001001",
        "walkability_index": 18.7,
        "intersection_density": 63.1
      }
    ]
  }
}
GET/v1/walkability?zip=28203
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/walkability?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.

[ MORE IN MOBILITY ]