Skip to main content
GET
/
api
/
calls
/
history
List calls with filters
curl --request GET \
  --url https://your-instance.example.com/api/calls/history \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "calls": [],
  "total": 0
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

contactId
string

Filter by contact ObjectId.

userId
string

Filter by user ObjectId.

status
string

Filter by call status (e.g. completed, no-answer, failed).

limit
string

Page size as a string (parsed to int; default 50).

offset
string

Skip count as a string (parsed to int; default 0).

Response

Call history page

success
enum<boolean>
required
Available options:
true
calls
object[]
required
total
integer
required