GET
/v4/geovalidation.jsonGeovalidation API
Validate an address and get a confidence score indicating how accurate and deliverable the address is. Useful for address verification in e-commerce and logistics.
Try in Playground →Authentication
Include your API token in the request header:
X-Authorization-Token: your_token_here
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| address | string | Required | The address to validate |
Code Examples
curl "https://apihub.latlong.ai/v4/geovalidation.json?address=VALUE" \ -H "X-Authorization-Token: YOUR_TOKEN"
Response
JSON200 OK
{
"status": "success",
"code": 1001,
"data": {
"input_address": "100 Feet Road Indiranagar Bangalore",
"formatted_address": "100 Feet Road, Indiranagar, Bangalore, Karnataka 560038",
"confidence": 0.92,
"latitude": 12.9784,
"longitude": 77.6408
}
}Ready to try it?
Test this API interactively in the playground.

