Skip to main content
GET
/
contacts
List Contacts
curl --request GET \
  --url https://api.truedy.ai/api/public/v1/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "cnt_d4e5f6a7",
      "name": "Jane Doe",
      "phone": "+12125551234",
      "email": "jane@acme.com",
      "folder_id": "folder_abc123",
      "custom_fields": {
        "company": "Acme Corp",
        "lead_score": "85",
        "region": "Northeast"
      },
      "call_count": 3,
      "last_called_at": "2026-04-04T14:00:00Z",
      "created_at": "2026-03-15T09:00:00Z",
      "updated_at": "2026-04-04T14:00:00Z"
    },
    {
      "id": "cnt_e5f6g7h8",
      "name": "John Smith",
      "phone": "+15551230987",
      "email": "john@widget.co",
      "folder_id": "folder_abc123",
      "custom_fields": {
        "company": "Acme Corp",
        "lead_score": "85",
        "region": "Northeast"
      },
      "call_count": 3,
      "last_called_at": "2026-04-04T14:00:00Z",
      "created_at": "2026-03-15T09:00:00Z",
      "updated_at": "2026-04-04T14:00:00Z"
    }
  ],
  "meta": {
    "request_id": "req_32e7531c",
    "ts": "2026-04-05T10:22:00Z"
  },
  "pagination": {
    "total": 24,
    "limit": 50,
    "offset": 0,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header: Bearer <your_api_key>

Query Parameters

folder_id
string

Filter by folder ID

limit
integer
default:50

Maximum results per page

Required range: 1 <= x <= 100
offset
integer
default:0

Number of results to skip

Required range: x >= 0

Response

List of contacts

data
object[]
required
meta
object
required
pagination
object