cURL
curl --request GET \ --url https://api.example.com/threads
{ "threads": [ { "thread_id": "<string>", "user_id": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "status": "idle", "metadata": {} } ], "total": 123 }
List all threads owned by the authenticated user.
Returns every thread without filtering. Use the search endpoint for filtered queries.
Successful Response
Response model for listing threads
Show child attributes