Skip to main content
GET
/
api
/
v1
/
lists
List lists
curl --request GET \
  --url https://voxworks.ai/api/v1/lists \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "lists": [
    {
      "id": "<string>",
      "name": "<string>",
      "team_id": "<string>",
      "contacts": [
        {
          "id": "<string>",
          "team_id": "<string>",
          "phone_number": "+61429069971",
          "first_name": "<string>",
          "last_name": "<string>",
          "full_name": "<string>",
          "email": "<string>",
          "object_data": {}
        }
      ]
    }
  ],
  "meta": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.voxworks.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from Voxworks, sent as Authorization: Bearer YOUR_API_KEY.

Query Parameters

limit
integer
default:100
Required range: 1 <= x <= 500

Response

Lists returned.

success
boolean
lists
object[]
meta
object