Atlasblock API

GET/v1/system/health

Operational liveness: per-source data vintages, freshness, and cache status.

[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/system/health"
[ 200 OK ]
{
  "status": "ok",
  "version": "1.0.0",
  "data_sources": {
    "epa_walkability": {
      "status": "ok",
      "rows": 368913,
      "vintage": "EPA NWI 2021",
      "vintage_year": 2021
    },
    "fbi_crime": {
      "status": "ok",
      "vintage": "FBI UCR 2023 (county)",
      "vintage_year": 2023
    },
    "nces_schools": {
      "status": "ok",
      "rows": 99010,
      "vintage": "NCES CCD 2021"
    }
  },
  "cache": {
    "status": "ok",
    "driver": "redis"
  },
  "uptime_seconds": 86400
}
GET/v1/system/health
[ CURL ]
curl "https://atlasblock.dev/api/v1/system/health" \
  -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.