Reverse geocoding, property boundaries, and postal geometry for urban mapping and last-mile logistics. Batched lookups with 99.99% address-match accuracy and global coverage. Ideal for delivery routing, real estate, and civic infrastructure applications.
Address matching tuned against parcel and civic registries.
Postal geometry and boundaries across 200+ countries.
Up to 1,000 coordinates per request for fleet-scale routing.
All requests require a Bearer Token provided in the Authorization header.
Authorization: Bearer $API_KEY| Method | Path | Description |
|---|---|---|
| GET | /v1/search | Reverse geocode a coordinate to an address. |
| GET | /v1/boundaries/{id} | Fetch the boundary polygon for a parcel or region. |
| POST | /v1/batch | Reverse geocode up to 1,000 coordinates in one call. |
| GET | /v1/autocomplete | Autocomplete place and address queries for search UX. |
curl -X GET "https://maps.geobounds.io/v1/search?lat=37.7749&lng=-122.4194" \ -H "Authorization: Bearer $API_KEY"
{
"status": "success",
"data": {
"address": {
"street": "535 Mission St",
"city": "San Francisco",
"region": "CA",
"postalCode": "94105",
"country": "US"
},
"accuracy": 0.998,
"boundaryId": "parcel_8k2w"
},
"usage": {
"ms": 204
}
}