Skip to main content
POST
Reverse Geocode
Convert latitude and longitude coordinates into a human-readable address.

Use Cases

  • “Where am I?”: Find the user’s current street or city.
  • Logistics: Accurately capture delivery addresses from a driver’s GPS coordinates.
  • Safety: Provide structured location data for emergency services.

Response Data

The response includes high-level details like city, municipality, and province, along with local details like road and neighbourhood.

Authorizations

Authorization
string
header
required

JWT Bearer token for authentication. Example: "Bearer YOUR_API_TOKEN_HERE"

Body

application/json

Coordinates to reverse geocode

Coordinates to reverse geocode

lat
number
required

Latitude coordinate of the location

Example:

24.6756

lon
number
required

Longitude coordinate of the location

Example:

46.7386

Response

OK

data
object

Response payload

error
string

Error message (only present when ok is false)

Example:

""

ok
boolean

Whether the request was successful

Example:

true