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

# List Calls

> List recent calls with pagination

Returns a paginated list of your calls (recordings), sorted by most recent first.

<Info>
  This endpoint is an alias for [List Recordings](/transcord/api-reference/recordings/list). Both return the same data.
</Info>

## Query Parameters

<ParamField query="page" type="integer" default="1">
  Page number (1-indexed)
</ParamField>

<ParamField query="limit" type="integer" default="20">
  Results per page (max 100)
</ParamField>

## Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.transcord.app/api/v1/calls?limit=10" \
    -H "Authorization: Bearer tr_live_your_api_key"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://app.transcord.app/api/v1/calls?limit=10', {
    headers: {
      'Authorization': 'Bearer tr_live_your_api_key'
    }
  });
  const { data, pagination } = await response.json();
  ```
</CodeGroup>

## Response

```json Response theme={null}
{
  "data": [
    {
      "id": "clx1234567890",
      "callSid": "CA1234567890abcdef",
      "toNumber": "+14155551234",
      "fromNumber": "+14155555678",
      "duration": 342,
      "status": "ready",
      "direction": "outbound",
      "createdAt": "2026-01-15T10:30:00.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 47,
    "totalPages": 5,
    "hasMore": true
  }
}
```
