Skip to main content
GET
/
api
/
calls
/
{callId}
Get a single call by ID
curl --request GET \
  --url https://your-instance.example.com/api/calls/{callId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "call": {
    "_id": "64f0a1b2c3d4e5f6a7b8cb00",
    "callId": "64f0a1b2c3d4e5f6a7b8cb00",
    "provider": "sinch",
    "direction": "outbound",
    "status": "completed",
    "duration": 154
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

callId
string
required

The provider-agnostic callId minted by Tether (also used as providerCallId for SDK calls).

Response

Call document

success
enum<boolean>
required
Available options:
true
call
object
required

A Call document. Many fields are provider-specific; clients should be tolerant of additional properties.

Example:
{
"_id": "64f0a1b2c3d4e5f6a7b8cb00",
"callId": "64f0a1b2c3d4e5f6a7b8cb00",
"provider": "sinch",
"providerCallId": "sinch-call-abc123",
"direction": "outbound",
"status": "completed",
"from": "+14165550100",
"to": "+14165550199",
"contactId": "64f0a1b2c3d4e5f6a7b8c9d0",
"conversationId": "64f0a1b2c3d4e5f6a7b8c9e0",
"organizationId": "64f0a1b2c3d4e5f6a7b8c9d3",
"userId": "64f0a1b2c3d4e5f6a7b8c9d4",
"providerPhoneNumber": "+14165550100",
"startTime": "2026-05-15T09:10:00.000Z",
"answerTime": "2026-05-15T09:10:08.000Z",
"endTime": "2026-05-15T09:12:34.000Z",
"duration": 154,
"recordings": [],
"createdAt": "2026-05-15T09:10:00.000Z",
"updatedAt": "2026-05-15T09:12:34.000Z"
}