GET
/
sessions
curl --request GET \
  --url https://api.truecall.com/sessions \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "items": [
      {
        "tc_id": "<string>",
        "created_at": 1718104009000,
        "source_url": "<string>",
        "generator_id": "<string>"
      }
    ],
    "pagination": {
      "has_next_page": true,
      "next_page_token": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page_size
integer

Number of items per page (1-100).

Required range: 1 <= x <= 100
page_token
string

Token to fetch the next page of results, if available.

Response

200
application/json
Sessions listing response
status
enum<string>
Available options:
success,
error
Example:

"success"

data
object