Sales and tax value history
const url = 'https://api.acresift.com/v1/parcels/37105012685/sales';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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/parcels/37105012685/sales \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”ParcelKey
Example
37105012685ParcelKey
Responses
Section titled “ Responses ”Sales and value history
object
Recorded sales, newest first. Today only the last recorded sale is held
object
Recorded sale price
ISO 8601 date
ISO 4217
True when ClosePrice is $1,000 or more; lower amounts are gifts and other non-market transfers
object
Id of the row in GET /v1/sources
ISO 8601 date or date-time the value was last pulled or computed
Tax value each time it changed, newest first (history starts at our first load)
object
Example
{ "Sales": [ { "ClosePrice": 185000, "CloseDate": "2021-06-14", "CurrencyCode": "USD", "Provenance": { "SourceId": "metrics:37105", "SourceName": "Site metrics: FEMA flood, NWI wetlands, 3DEP slope, NCDOT roads", "AsOf": "2026-09-22" } } ]}The request did not validate; errors lists each bad field
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."}Missing, wrong or revoked API key
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."}No parcel with that key
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."}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."}