provider geocode GET /geocode/reverse
@utdk/openrouteservice /geocode/reverse
Reverse-geocode a coordinate into an address
Returns the nearest known address(es) for a given coordinate. Pelias-backed.
point.lon query required
Longitude.
number
point.lat query required
Latitude.
number
size query
Maximum candidates to return.
integer
boundary.circle.radius query
Restrict to this radius (km) around the point.
number

Try it

Authentication
Configure credentials for OpenRouteService API
geocodereverse
GET/geocode/reverse
Returns the nearest known address(es) for a given coordinate. Pelias-backed.

required

Longitude.

required

Latitude.

Maximum candidates to return.

Restrict to this radius (km) around the point.

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import openrouteservice from '@utdk/openrouteservice';

await openrouteservice.geocodereverse({
  "size": 10
})