---
title: "Reverse geocode coordinates"
method: GET
path: "/v3/lds/geocoding/reverse"
tags: ["LDS"]
---

# Reverse geocode coordinates

`GET /v3/lds/geocoding/reverse`

Returns the street address closest to a pair of coordinates.

Unlike `GET /v3/lds/geocoding/geocode`, this endpoint
returns the results directly, without the `{ error, value }` wrapper.

## Query parameters

- `lat` number, required
- `lon` number, required
- `lang` string
- `options` string

## Response `200`

The addresses found.

- GeocodingResult[]
  - `formattedAddress` string
  - `latitude` number
  - `longitude` number
  - `country` string
  - `countryCode` string
  - `state` string
  - `county` string
  - `city` string
  - `zipcode` string
  - `streetName` string
  - `streetNumber` string
  - `provider` string

## Other responses

- `400` — The request is malformed or a parameter failed validation.
- `401` — The token is missing, malformed or expired.
- `403` — The token doesn't grant access to this resource.
- `429` — You went over the [rate limit](#rate-limits) for this API.

---

[API](https://skmtc.net/gitbookio/apis/carto-api.md) · [All operations](https://skmtc.net/gitbookio/apis/carto-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gitbookio/carto-api/revisions/019f79ecdd6c/schema)
