Atlasblock API

GET/v1/counties/{countyFips}/summary

County rollup: crime and school counts across the county.

[ OPTIONS ]
NameTypeRequiredDescription
countyFipsstring (path)Yes5-digit county FIPS code (e.g. 37119).
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/counties/37119/summary"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "county_fips": "37119",
    "county": "Mecklenburg",
    "state": "NC",
    "zip_count": 108,
    "population": 1115482,
    "crime": {
      "violent_crime_rate": 643.3,
      "property_crime_rate": 3535.8,
      "year": 2023
    },
    "schools": {
      "total": 512,
      "public_k12": 341,
      "colleges": 24,
      "private": 147,
      "public_by_level": {
        "elementary": 180,
        "middle": 78,
        "high": 83
      }
    }
  }
}
GET/v1/counties/37119/summary
[ PATH ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/counties/37119/summary" \
  -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.