GET
/
chat
/
search
Search Chats
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",
          "name": "<string>",
          "persona_id": 123,
          "time_created": "2023-11-07T05:31:56Z",
          "shared_status": "public",
          "folder_id": 123,
          "current_alternate_model": "<string>",
          "current_temperature_override": 123
        }
      ]
    }
  ],
  "has_more": true,
  "next_page": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

query
string | null
page
integer
default:1
page_size
integer
default:10

Response

200
application/json

Successful Response

The response is of type object.