Atlasblock API

GET/v1/transit

Transit proximity and intersection density for a zip (EPA block groups).

[ OPTIONS ]
NameTypeRequiredDescription
zipstringYesUS zip code.
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/transit?zip=28203"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "zip": "28203",
    "block_group_count": 9,
    "transit_proximity": {
      "avg": 13.1,
      "min": 11.2,
      "max": 15.4
    },
    "intersection_density": {
      "avg": 62,
      "min": 48,
      "max": 75
    }
  }
}
GET/v1/transit?zip=28203
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/transit?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 ]