GeoLocation Service

What This Service Does

This service identifies geographic locations based on coordinates. Provide a latitude and longitude, and our API will return detailed information about the location, including country, administrative divisions, and other geographic properties.

Example Usage

Request:

{
  "latitude": -1.2784,
  "longitude": 36.8164
}

Response:

{
  "country": "KEN",
  "levelsCount": 4,
  "properties": {
    "country": "Kenya",
    "county": "Nairobi",
    "constituency": "Starehe",
    "ward": "NairobiCentral"
  }
}
View API Documentation