> ## Documentation Index
> Fetch the complete documentation index at: https://developers.sendazi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Contacts

> Returns a paginated list of all contacts

<ParamField query="page" type="integer" default="1">
  Page number for pagination
</ParamField>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "success": true,
    "data": {
      "current_page": 1,
      "data": [
        {
          "id": 1,
          "phone_number": "233241234567",
          "first_name": "John",
          "last_name": "Doe",
          "email": "john@example.com",
          "created_at": "2026-01-01T00:00:00.000000Z",
          "updated_at": "2026-01-01T00:00:00.000000Z"
        },
        {
          "id": 2,
          "phone_number": "233501234567",
          "first_name": "Jane",
          "last_name": "Smith",
          "email": "jane@example.com",
          "created_at": "2026-01-02T00:00:00.000000Z",
          "updated_at": "2026-01-02T00:00:00.000000Z"
        }
      ],
      "per_page": 10,
      "total": 2,
      "last_page": 1
    }
  }
  ```
</ResponseExample>
