Atlasblock API

GET/v1/climate/comfort

A derived comfort index (milder = higher) and growing-season length.

[ OPTIONS ]
NameTypeRequiredDescription
zipstringYesUS zip code.
[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/climate/comfort?zip=28203"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "zip": "28203",
    "city": "Charlotte",
    "state": "NC",
    "comfort": {
      "comfort_index": 7.6,
      "mild_days": 278,
      "hot_days_over_90f": 32,
      "freezing_days_under_32f": 55,
      "growing_season_days": 310
    },
    "source": "noaa_normals_1991_2020"
  }
}
GET/v1/climate/comfort?zip=28203
[ QUERY ]
[ CURL ]
curl "https://atlasblock.dev/api/v1/climate/comfort?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.