For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get E911

Get 911 information

GET or POST Request

https://v1.api19.com/e911/get

Get the currently set 911 information for a number

HTTP Post Variables Supported

Argument

Required

Type

did

yes

10 digit number

key

yes

api key

curl https://v1.api19.com/e911/get \
 -d 'key=api_token' \
 -d 'did=5555555555'
curl "https://v1.api19.com/e911/get?key=api_token&did=5555555555"
{
  "status": "ok",
  "data": {
    "id": "1",
    "user_id": "123",
    "did": "5555555555",
    "name": null,
    "address1": "123 Some Street",
    "address2": "",
    "city": "Englewood",
    "state": "CO",
    "zip": "80112",
    "carrier": null,
    "create_dt": "2025-07-25 16:33:06"
  }
}

Last updated