v1

latestOpenAPI 3.0.32026-07-2632131.4 MB
Address

Retrieve Property Address

Get the listing address of the given property.

get/address/{id}

Path parameters

idstring required
Example:5b2149c9f579400024388c47

The Guesty ID of the property for which you would like to retrieve the address.

Response

Return the address object.

isPublishedAddressEnabledboolean

Example response

{
  "address": {
    "full": "30-19 32nd St, Long Island City, NY 11102, USA",
    "street": "32nd Street",
    "city": "New York",
    "country": "United States",
    "state": "New York",
    "location": {
      "lat": 40.7659021,
      "lng": -73.9208235
    },
    "zipcode": 11102
  },
  "publishedAddress": {
    "full": "30-19 32nd St, Long Island City, NY 11102, USA",
    "street": "32nd Street",
    "city": "New York",
    "country": "United States",
    "state": "New York",
    "location": {
      "lat": 40.7659021,
      "lng": -73.9208235
    },
    "zipcode": 11102
  },
  "isPublishedAddressEnabled": true
}