Atlasblock API

GET/v1/regions/{region}/counties

Every county in a Census region (paginated).

[ OPTIONS ]
NameTypeRequiredDescription
regionstring (path)YesRegion slug: northeast, midwest, south, or west.
pageintegerNoPage number (default 1).
per_pageintegerNoResults per page (default 25, max 100).
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/regions/south/counties?per_page=25"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "region": "South",
    "counties": [
      {
        "county_fips": "37119",
        "county": "Mecklenburg County",
        "state": "NC",
        "population": 1115482,
        "zip_count": 108
      }
    ],
    "pagination": {
      "page": 1,
      "per_page": 25,
      "total": 1423,
      "total_pages": 57
    }
  }
}
GET/v1/regions/south/counties?per_page=25
[ PATH ]
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/regions/south/counties?per_page=25" \
  -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.