Upcoming change: Onyx is moving to group-based permissions. Curator and Global Curator roles will be removed. See what's changing
curl --request GET \
--url https://cloud.onyx.app/api/chat/search \
--header 'Authorization: Bearer <token>'{
"groups": [
{
"title": "<string>",
"chats": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"time_created": "2023-11-07T05:31:56Z",
"name": "<string>",
"persona_id": 123,
"current_alternate_model": "<string>",
"current_temperature_override": 123
}
]
}
],
"has_more": true,
"next_page": 123
}Search for chat sessions based on the provided query. If no query is provided, returns recent chat sessions.
curl --request GET \
--url https://cloud.onyx.app/api/chat/search \
--header 'Authorization: Bearer <token>'{
"groups": [
{
"title": "<string>",
"chats": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"time_created": "2023-11-07T05:31:56Z",
"name": "<string>",
"persona_id": 123,
"current_alternate_model": "<string>",
"current_temperature_override": 123
}
]
}
],
"has_more": true,
"next_page": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.onyx.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header with Bearer token
Was this page helpful?