GET
/
api
/
v1
/
threads
/
{id}
/
curl --request GET \
  --url https://api.camelai.com/api/v1/threads/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "title": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "last_modified": "2023-11-07T05:31:56Z",
  "connection_ids": "<any>",
  "connection_names": "<string>",
  "message_count": "<string>",
  "model": "sonnet-4",
  "source": "UI"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

A unique integer value identifying this thread.

Response

200
application/json

Serializer for Thread model.