# List Voicemail Accounts

## GET or POST Request

{% hint style="info" %}
<https://v1.api19.com/voicemail/inbox/list>
{% endhint %}

Get a list of all of your numbers on your account

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

```php
curl https://v1.api19.com/voicemail/inbox/list \
 -d 'key=api_token'
```

{% endtab %}

{% tab title="Curl Get" %}

```
curl https://v1.api19.com/voicemail/inbox/list?key=apikey
```

{% endtab %}

{% tab title="JSON Response" %}

```json
{
  "status": "ok",
  "data": [
    {
      "id": "15658",
      "box_id": "33222",
      "user_id": "3030",
      "name": "test",
      "password": "3322",
      "emails": "[\"help@api19.com\"]",
      "texts": "",
      "create_dt": "2025-01-03 03:19:01"
    },
    {
      "id": "15941",
      "box_id": "3023502",
      "user_id": "3030",
      "name": "chris",
      "password": "9933",
      "emails": "[\"support@api19.com\",\"help@api19.com\"]",
      "texts": "",
      "create_dt": "2025-05-29 17:00:41"
    }
  ]
}

```

{% endtab %}
{% endtabs %}
