Status
operational
Give it an address, a lat/lng, or a ZIP — get back the congressional, state senate, and state house districts.
$ curl -H "x-api-key: <your-key>" \ https://atlas.supercitizen.org/v1/districts?zip=19901
{
"input": { "zip": "19901" },
"location": {
"lat": 39.157, "lng": -75.521, "source": "zip-centroid"
},
"state": "DE",
"zip": "19901",
"congressional_district": "0", // "0" = at-large
"state_senate_district": "17",
"state_house_district": "32"
}
Send x-api-key: <your-key> (or Authorization: Bearer).
address, zip, or lat+lng.state, congressional_district, state_senate_district, state_house_district, and the resolved location.