v1

latestOpenAPI 3.0.32026-07-2632131.4 MB
Address

Geocode Location by Full Address

Converts the full address into latitude and longitude coordinates and populates individual address fields.

post/address/geocode

Request body

Example request

{
  "address": {
    "full": "30-19 32nd St, Long Island City, NY 11102, USA"
  },
  "publishedAddress": {
    "full": "30-19 32nd St, Long Island City, NY 11102, USA"
  }
}

Response

Return geocoded addresses.

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
  }
}