Geovalidation 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 →

Endpoint

GET/v4/geovalidation.json

Authentication

Include your token in the request header:

X-Authorization-Token: your_token

Parameters

NameTypeDescription
addressstringThe address to validate

Code Examples

curl "https://apihub.latlong.ai/v4/geovalidation.json?address=VALUE" \
  -H "X-Authorization-Token: YOUR_TOKEN"

Example Response

JSON
{
  "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
  }
}