# Get E911

## GET or POST Request

{% hint style="info" %}
<https://v1.api19.com/e911/get>
{% endhint %}

Get the currently set 911 information for a number

## HTTP Post Variables Supported

<table data-header-hidden><thead><tr><th width="123.9090576171875"></th><th width="108.54547119140625"></th><th></th></tr></thead><tbody><tr><td>Argument</td><td>Required</td><td>Type</td></tr><tr><td>did</td><td>yes</td><td>10 digit number</td></tr><tr><td>key</td><td>yes</td><td>api key</td></tr></tbody></table>

{% tabs %}
{% tab title="Curl Post" %}

<pre class="language-php"><code class="lang-php"><strong>curl https://v1.api19.com/e911/get \
</strong> -d 'key=api_token' \
 -d 'did=5555555555'
</code></pre>

{% endtab %}

{% tab title="Curl Get" %}

```
curl "https://v1.api19.com/e911/get?key=api_token&did=5555555555"
```

{% endtab %}

{% tab title="JSON Response" %}

```json
{
  "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"
  }
}
```

{% endtab %}
{% endtabs %}
