Atlasblock API

GET/v1/crime/national

National benchmark crime averages, plus the scoring reference.

[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/crime/national"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "national": {
      "violent_crime_rate": 380.7,
      "property_crime_rate": 1954.4,
      "basis": "county_mean",
      "sample_size": 3135,
      "year": 2023
    },
    "reference": {
      "violent_crime_max": 1650
    }
  }
}
GET/v1/crime/national
[ CURL ]
curl "https://atlasblock.dev/api/v1/crime/national" \
  -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.