List Contacts

Retrieve a paginated list of all contacts in your organisation.

GET/v2.0/contacts

Query Parameters

Query Parameters

ParameterTypeDescription
pagenumberPage numberDefault: 1
limitnumberNumber of contacts per page (max 100)Default: 100

Code Examples

curl -G https://api.sendiee.com/v2.0/contacts \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d "page=1" \
  -d "limit=50"

Response

{
  "success": true,
  "data": [
    {
      "_id": "664...",
      "phone": "919876543210",
      "countryCode": "91",
      "contactName": "John Doe",
      "email": "[email protected]",
      "platform": "whatsapp",
      "lead_category": "Interested",
      "source": "api",
      "createdAt": "2025-01-01T00:00:00.000Z"
    }
  ],
  "pagination": {
    "total": 2500,
    "page": 1,
    "limit": 100,
    "totalPages": 25
  }
}

Try It

Try it — API Playground