validate address

API Docs by APIMATIC

Validate Address

Use this method to validate E911 service address before activating the feature on a specific DID. The response will include one of the following:

  • Full match, which means the address submitted is valid and can be added to the PSAP database
  • Corrected address that does not exactly match the submitted address, but can be added to the PSAP database
  • In case if the submitted address is not close enough to find match, candidate addresses can be returned
  • No match

This endpoint requires authentication.

POST /e911_records/validate_address
  • EXPLORER
  • PARAMETERS
NameDescription
addressBody Required

Response Type

curl -X POST \
  --url 'https://api.wavix.com/v1/e911_records/validate_address?appid=your-API-key' \
  -H 'Accept: application/json' \
  -H 'Content-type: application/json' \
  --data-raw '{
  "phone_number": "phone_number4",
  "name": "name6",
  "address": {
    "street_number": "1230",
    "street": "Crim Lane",
    "location": "221b",
    "city": "Paton",
    "state": "Iowa",
    "zip_code": "50217"
  }
}'