GET
/
tci
/
sessions
cURL
curl --request GET \
  --url https://api.together.xyz/v1/tci/sessions \
  --header 'Authorization: Bearer <token>'
{
  "errors": [
    "<string>"
  ],
  "data": {
    "sessions": [
      {
        "execute_count": 123,
        "expires_at": "2023-11-07T05:31:56Z",
        "id": "ses_abcDEF123",
        "last_execute_at": "2023-11-07T05:31:56Z",
        "started_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
default:default
required

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

Response

200 - application/json

List Response

errors
(string | Error · object)[]
data
object