Resolve GhanaPostGPS codes to coordinates, reverse geocode, find nearby locations, and validate addresses. Built for delivery, fintech, and logistics apps in Ghana.
Six endpoints to power location-based applications across Ghana
Search by place name โ "Accra Mall", "KNUST", "Medics Clinic" โ and get back the GPS code, coordinates, and map link.
GET /v1/search
Upload a CSV of GPS codes and get validated results with locations, quality scores, and map links. No coding needed.
/tools/validateResolve any GhanaPostGPS code to full location details with coordinates and a Google Maps link.
GET /v1/lookup
Convert latitude/longitude coordinates to a GhanaPostGPS digital address.
GET /v1/reverse
Find known addresses within a radius of any GPS code, sorted by distance.
GET /v1/nearby
Check if a GhanaPostGPS code format is valid without performing a lookup.
GET /v1/validate
List all 16 Ghana regions and their districts for reference and filtering.
GET /v1/regions
Every response includes a direct Google Maps URL so your users can navigate instantly.
google_maps_url
Search by place name or resolve a GPS code directly
# Search by place name
$ curl "https://ghanapostgps.onrender.com/v1/search?q=Accra+Mall"
{
"success": true,
"data": {
"query": "Accra Mall",
"count": 1,
"results": [{
"type": "place",
"name": "Accra Mall, Spintex Road, Accra",
"gps_name": "GD1106313",
"region": "Greater Accra",
"district": "La-Dade-Kotopon",
"latitude": 5.6222,
"longitude": -0.1729,
"google_maps_url": "https://www.google.com/maps/search/..."
}]
}
}
# Or resolve a GPS code directly
$ curl "https://ghanapostgps.onrender.com/v1/lookup?address=AK-484-9321"
No API key required for development. Free tier: 100 requests/day.
Power your applications with reliable address resolution
Resolve GPS codes for last-mile delivery routing
Verify customer addresses for compliance
Validate shipping addresses at checkout
Convert GPS codes to pickup/drop-off points
No signup required. Hit the API directly from your terminal or app.