Address Standardization API
logo logo
Back

What is Address Standardization?

The Address Standardization service takes a nonformatted address and breaks the address into identifiable components like country, state, city, locality, and sub locality along with additional information like street, landmark, floor, etc. It also identifies/corrects the address pin code.

API request format

Headers

Note: To get an API key, you can send a request to us at insights@delhivery.com.


Parameters

{
    "data": {
      "address": "Plot 5, Sector 44, Gurgaon",
      "pincode": "122003",
      "city": "Gurgaon",
      "state": "Haryana"
    }
}

API responses

Response details

{
  "success": true,
  "status_code": 200,
  "message": "Request has been processed",
  "request_id": AX34687667877689,
  "result": {
    "pincode": 122003,
    "country": "india",
    "state": "haryana",
    "city": "gurgaon",
    "locality": "sector 44",
    "sub_locality": "delhivery corporate office",
    "entity_information": {
      "plot": "5",
      "sector": "44",
      "door_information": "5"
    }
  }
}