- README
- Authentication
- Guides
- API Keys
- Chats
- Documents
- Knowledge Bots
Get All Chats
GET
/api/chats
chat
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
recipe_id
string
optional
Example:
reci_01h821c9fcqsn04bwysaqvc9q8
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.crbnai.com/api/chats?recipe_id=reci_01h821c9fcqsn04bwysaqvc9q8'
Responses
🟢200OK
application/json
Body
array of:
id
string <uuid>
optional
created_at
string <date-time>
optional
last_message_at
string <date-time>
optional
title
string
required
owner_id
string <uuid>
required
recipe_id
string <uuid> | null
optional
llm_config
object (LanguageModelConfig)
required
model
string
required
vendor
string
required
Example
[
{
"title": "expedita",
"owner_id": "53fdf1c0-8920-47df-8a5e-78bcd325c0b4",
"created_at": "2094-04-08T04:18:45.391Z",
"id": "433d9b10-0f91-4719-ab76-f1d9cd52371b",
"last_message_at": "2068-01-28T04:15:11.719Z",
"recipe_id": "36166c5d-be09-48d7-9294-d0e0696dc811"
},
{
"title": "molestiae",
"owner_id": "d2b6d962-777d-4710-b0c4-e8316cf7fe0b",
"recipe_id": null,
"created_at": "2075-11-17T13:01:46.966Z",
"id": "e0374c8e-5fee-411b-a450-efdd5801358c",
"last_message_at": "2068-06-04T10:25:30.96Z"
}
]
Modified at 2023-12-12 06:39:44