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

List Voicemail Accounts

List all of the numbers on your account

GET or POST Request

https://v1.api19.com/voicemail/inbox/list

Get a list of all of your numbers on your account

curl https://v1.api19.com/voicemail/inbox/list \
 -d 'key=api_token'
curl https://v1.api19.com/voicemail/inbox/list?key=apikey
{
  "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"
    }
  ]
}

Last updated