> ## Documentation Index
> Fetch the complete documentation index at: https://docs.60db.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Calls

> List call history (CDR logs) for your workspace

Retrieve call logs (call detail records). Requires Gate T.

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

### Query Parameters

<ParamField query="limit" type="integer" default="50">
  1–200
</ParamField>

<ParamField query="offset" type="integer" default="0">
  For pagination
</ParamField>

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "logs": [
      {
        "id": "call-uuid",
        "call_id": "call-uuid",
        "direction": "outbound",
        "disposition": "answered",
        "from": "+919876543210",
        "to": "+919999999999",
        "billsec": 120,
        "start_ts": "2026-09-24T10:30:00Z"
      }
    ],
    "total": 150,
    "limit": 50,
    "offset": 0,
    "has_more": true
  }
}
```

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/dialer/logs?limit=50 \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const calls = await client.dialer.calls.list({ limit: 50 });
  ```

  ```python Python theme={null}
  calls = client.dialer.calls.list(limit=50)
  ```
</RequestExample>
