v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Miscellaneous|Geocoding

Geocode address.

Geocode an address to obtain its geographic coordinates, including the latitude and longitude. Additionally, a formatted address will be provided alongside the latitude and longitude. You may input an unformatted address in the address parameter, for instance, "Rheiner Str. 3, 48496 Hopsten".

get/geocoder/geocode

Query parameters

querystring required

The address. 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
  ]
}