cURL
curl --request GET \ --url https://api.example.com/v1/calls
List recent calls with pagination
curl -X GET "https://app.transcord.app/api/v1/calls?limit=10" \ -H "Authorization: Bearer tr_live_your_api_key"
{ "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 } }