Atlasblock API

GET/v1/housing

Housing stock: median value, rent, tenure, vacancy, structure type, and age (ACS).

[ OPTIONS ]
NameTypeRequiredDescription
zipstringYesUS zip code.
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/housing?zip=28203"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "zip": "28203",
    "median_home_value": 708600,
    "median_gross_rent": 1829,
    "median_year_built": 2007,
    "median_rooms": 3.6,
    "pct_owner_occupied": 31.1,
    "vacancy_rate": 10.2,
    "pct_single_family": 32.5
  }
}
GET/v1/housing?zip=28203
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/housing?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 HOUSING ]