Skip to main content
GET
https://api.example.com
/
v1
/
contacts
/
lists
/
{id}
/
contacts
curl -X GET https://api.example.com/v1/contacts/lists/{list_id}/contacts \
  -H "X-API-Key: YOUR_API_KEY"
{
  "success": true,
  "total": 25,
  "contacts": [
    {
      "unique_id": "1763072372569x...",
      "phone_number": "+15551234567",
      "first_name": "John",
      "last_name": "Doe"
    }
  ],
  "powered_by": "Teli"
}

Authorizations

X-API-Key
string
required
Authentication header

Path

id
string
required
Contact list unique_id
curl -X GET https://api.example.com/v1/contacts/lists/{list_id}/contacts \
  -H "X-API-Key: YOUR_API_KEY"
{
  "success": true,
  "total": 25,
  "contacts": [
    {
      "unique_id": "1763072372569x...",
      "phone_number": "+15551234567",
      "first_name": "John",
      "last_name": "Doe"
    }
  ],
  "powered_by": "Teli"
}