v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Miscellaneous|Geocoding

Search an address.

Reverse geocoding converts geographic coordinates, such as latitude and longitude, into an address format. Latitude and longitude coordinates can be inputted into the corresponding parameters, for instance, "52.37652038909364 7.605081948346127".

get/geocoder/reverse_geocode

Query parameters

latLngstring required
Example:52.37652038909364 7.605081948346127

The geo coordinate. This Parameter is required.

Response

Success Response:

latLngnumber[]

Represents a geo coordinate. An array of two double values, representing the latitude and longitude.

namestring

The address name.

streetstring

The complete street.

streetNamestring

The street name.

streetNumberstring

The house number.

zipCodestring

The postcode.

citystring

The city.

countryCodestring

The two digit country abbreviation. (ISO-3166 ALPHA-2)

fullAddressstring

The complete address.

Example response

{
  "latLng": [
    52.38127828631681,
    7.594243214018696
  ]
}