---
title: "Search an address."
method: GET
path: "/geocoder/reverse_geocode"
tags: ["Miscellaneous|Geocoding"]
---

# Search an address.

`GET /geocoder/reverse_geocode`

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".

## Query parameters

- `latLng` string, required

## Response `200`

Success Response:

- ComponentGeocodingAddressInterface — Represents an address
  - `latLng` number[] — Represents a geo coordinate. An array of two double values, representing the latitude and longitude.
  - `name` string — The address name.
  - `street` string — The complete street.
  - `streetName` string — The street name.
  - `streetNumber` string — The house number.
  - `zipCode` string — The postcode.
  - `city` string — The city.
  - `countryCode` string — The two digit country abbreviation. (ISO-3166 ALPHA-2)
  - `fullAddress` string — The complete address.

---

[API](https://skmtc.net/geocapture/apis/geocapture-api.md) · [All operations](https://skmtc.net/geocapture/apis/geocapture-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/geocapture/geocapture-api/versions/15839b24c497/schema)
