curl --request GET \
--url https://api.investorlift.com/v1/properties/{property_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.investorlift.com/v1/properties/{property_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.investorlift.com/v1/properties/{property_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)Read one parcel, its owner and every deal on it
One parcel: its assessor facts, who holds it and how, its short-term rental record, and every deal ever recorded on it. The holding facts are the owner kind, owner-occupied or absentee, the holding kind, held since, permits and rental registration.
For deals around a parcel use /v1/deals with property_id. To list licensed short-term rental parcels use /v1/str-parcels, sold by contract.
curl --request GET \
--url https://api.investorlift.com/v1/properties/{property_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.investorlift.com/v1/properties/{property_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.investorlift.com/v1/properties/{property_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
API key from the developer console (starts with zpka_). Create one at https://developers.investorlift.com/get-a-key.
Path Parameters
Parcel id, prop_<32 hex>, from /v1/properties/resolve or any deal's property.id. The prefix is part of the id (400 invalid_id otherwise).
1 - 64Response
The parcel block, the owner block and deals[].
The parcel block, the owner block and deals[].
Was this page helpful?