Skip to main content
GET
/
v1
/
calls
List Calls
curl --request GET \
  --url https://api.example.com/v1/calls
Returns a paginated list of your calls (recordings), sorted by most recent first.
This endpoint is an alias for List Recordings. Both return the same data.

Query Parameters

page
integer
default:"1"
Page number (1-indexed)
limit
integer
default:"20"
Results per page (max 100)

Request

curl -X GET "https://app.transcord.app/api/v1/calls?limit=10" \
  -H "Authorization: Bearer tr_live_your_api_key"

Response

Response
{
  "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
  }
}