cURL
curl --request GET \ --url https://api.example.com/api/search/use-cases/{use_case_id}/threads \ --header 'Authorization: Bearer <token>'
{ "use_case_id": "<string>", "threads": [ { "thread_id": "<string>", "chats": [ { "id": "<string>", "use_case_id": "<string>", "thread_id": "<string>", "knowledge_asset_ids": [ "<string>" ], "title": "<string>", "entries": [], "updated_at": "0001-01-01T00:00:00", "created_at": "0001-01-01T00:00:00", "targeted_web_search_urls": [ "<string>" ], "extracted_urls": [ "<string>" ] } ], "updated_at": "2023-11-07T05:31:56Z", "title": "<string>" } ], "pagination": { "last_chat_id": "<string>", "has_more": true, "page_size": 123 } }
Fetch paginated search threads for the authenticated user
Bearer token authentication. Format: 'Bearer '
x <= 100
Successful Response
Pydantic model for the response of a paginated fetch threads endpoint.
Show child attributes
Was this page helpful?