Errors
Every error is a problem details object (RFC 9457), served as application/problem+json. type links to a section below, title names the status, detail says what went wrong and instance is the path you called.
invalid_request
400. The request didn’t validate, for example a bad county code, a limit over 500 or a misspelt filter. errors names each bad field:
{ "type": "https://acresift.com/docs/api/errors#invalid_request", "title": "Invalid request", "status": 400, "detail": "See `errors`.", "instance": "/v1/screen", "errors": [{ "path": "filters", "message": "Unrecognized key: \"minAcre\"" }]}unauthorized
401. No key, an unknown key or a revoked key. See Authentication.
not_found
404. No parcel with that ParcelKey, or no such path.
rate_limited
429. Too many requests this minute. Wait the seconds in Retry-After. See Rate limits.
server_error
500. Something failed on our side. Try again; if it keeps failing, write to us with the time and path.