Estate
Get Estate List
Estate
Get Estate List
Returns a list of all active estates for given estate managing context.
GET
/
v1
/
estate
/
list
curl --request GET \
--url https://public-api.setle.app/v1/estate/list \
--header 'Authorization: Bearer <token>'
{
"estates": [
{
"estate": {
"metadata": {
"property_id": "xxx"
},
"address": {
"country": {},
"house_number": "<string>",
"house_number_extra": "<string>",
"latitude": 123,
"longitude": 123,
"place": "<string>",
"region": {},
"street": "<string>",
"zip_code": "<string>"
},
"estate_provider_type": "SKARABEE",
"external_id": "<string>",
"quality_label": "A",
"estate_status": "SOLD",
"estate_type": "HOUSE",
"media": [
{
"filename": "<string>",
"mime_type": "<string>",
"url": "<string>",
"position": 123
}
],
"price": 123,
"year_built": 123,
"year_renovated": 123
},
"referral_link": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successfully processed request.
Example:
{ "property_id": "xxx" }
Available options:
SKARABEE
, SWEEPBRIGHT
, ZABUN
, OMNICASA
, WHISE
, LEGACY_DB
, REALWORKS
, EPC_DOCUMENT
, QUICKSCAN
, SUGGESTED_RENOVATION_TRAJECTORY_CALCULATION
Available options:
A
, B
, C
, D
Available options:
SOLD
, FOR_SALE
, ONLINE
, OFFLINE
Available options:
HOUSE
, APARTMENT
curl --request GET \
--url https://public-api.setle.app/v1/estate/list \
--header 'Authorization: Bearer <token>'
{
"estates": [
{
"estate": {
"metadata": {
"property_id": "xxx"
},
"address": {
"country": {},
"house_number": "<string>",
"house_number_extra": "<string>",
"latitude": 123,
"longitude": 123,
"place": "<string>",
"region": {},
"street": "<string>",
"zip_code": "<string>"
},
"estate_provider_type": "SKARABEE",
"external_id": "<string>",
"quality_label": "A",
"estate_status": "SOLD",
"estate_type": "HOUSE",
"media": [
{
"filename": "<string>",
"mime_type": "<string>",
"url": "<string>",
"position": 123
}
],
"price": 123,
"year_built": 123,
"year_renovated": 123
},
"referral_link": "<string>"
}
]
}