What data is loaded where
const url = 'https://api.acresift.com/v1/coverage';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.acresift.com/v1/coveragePer state, and per county counted so far: how many parcels the search database holds and how many carry owners, sales, buildings and site facts. Read from counts the admin app keeps (refreshed about hourly); this call never counts the parcels table. Public: no key needed.
Responses
Section titled “ Responses ”Coverage by state and county
object
When the counts were taken (ISO 8601)
object
Highest rung reached in order: 1 map layers, 2 parcels, 3 owners (95%+), 4 values & sales (80%+), 5 buildings (80%+), 6 site facts (80%+)
Parcels in the search database (the map can show more)
object
object
Count / ParcelsInDatabase, 0 to 1
object
Count / ParcelsInDatabase, 0 to 1
object
Count / ParcelsInDatabase, 0 to 1
object
Count / ParcelsInDatabase, 0 to 1
Counties counted so far (the admin app counts a county when it is opened)
object
Highest rung reached in order: 1 map layers, 2 parcels, 3 owners (95%+), 4 values & sales (80%+), 5 buildings (80%+), 6 site facts (80%+)
Parcels in the search database (the map can show more)
object
object
Count / ParcelsInDatabase, 0 to 1
object
Count / ParcelsInDatabase, 0 to 1
object
Count / ParcelsInDatabase, 0 to 1
object
Count / ParcelsInDatabase, 0 to 1
Example
{ "States": [ { "Layers": { "Owners": { "Status": "full" }, "Sales": { "Status": "full" }, "Buildings": { "Status": "full" }, "SiteFacts": { "Status": "full" } } } ], "Counties": [ { "Layers": { "Owners": { "Status": "full" }, "Sales": { "Status": "full" }, "Buildings": { "Status": "full" }, "SiteFacts": { "Status": "full" } } } ]}Rate limit reached; wait Retry-After seconds
RFC 9457 problem details (served as application/problem+json)
object
Validation problems, one per bad field
object
Example
{ "type": "https://acresift.com/docs/api/errors#not_found", "title": "Not found", "status": 404, "detail": "No parcel 37105012685."}