POST
/
reverse-geocoding
curl --request POST \
  --url https://sandbox.cashfree.com/verification/reverse-geocoding \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "verification_id": "test001",
  "latitude": "12.9274477",
  "longitude": "77.6326542"
}'
{
"verification_id": "test001",
"reference_id": 21637861,
"latitude": "12.9274477",
"longitude": "77.6326542",
"address": "JSS Institutions Campus, First Floor, CA Site No.1, HAL 3rd Stage, HAL 3rd Stage, KodihalliBehind Hotel Leela Palace, HAL 2nd Stage, Kodihalli, Bengaluru, Karnataka 560008, India",
"city": "bangalore",
"state": "Karnataka",
"statecode": "KA",
"countrycode": "In",
"pincode": "560008",
"score": "1",
"status": "VALID"
}

Authorizations

x-client-id
string
header
required

Client ID. You can find your ID in the Merchant Dashboard.

x-client-secret
string
header
required

Client secret key. You can find your secret key in the Merchant Dashboard.

Headers

x-cf-signature
string

Send the signature if IP is not whitelisted.

Body

application/json

Find the request parameters to retrieve the physical address of a location

The body is of type object.

Response

200
application/json

Success response for retrieving physical address of a location

The response is of type object.