cURL
curl --request GET \ --url https://api.camelai.com/api/v1/threads/ \ --header 'Authorization: Bearer <token>'
{ "count": 123, "next": "http://api.example.org/accounts/?page=4", "previous": "http://api.example.org/accounts/?page=2", "results": [ { "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", "uid": "<string>" } ] }
Return all threads accessible to the current user with pagination support.
JWT or API key authentication using Bearer scheme
A page number within the paginated result set.
Number of results to return per page.
The response is of type object.
object
Was this page helpful?