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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully processed request.
estates
object[]
required