GET
/
chat
curl --request GET \
  --url https://api.isosceles.ai/chat/ \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "brain_id": "<string>",
    "chat_id": "<string>",
    "created_at": "<string>",
    "created_from": "<string>",
    "last_updated": "<string>",
    "model": "<string>",
    "system_message": "<string>",
    "temperature": 123,
    "title": "<string>",
    "user_id": "<string>",
    "response_length": "MEDIUM"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
brain_id
string | null
chat_id
string
created_at
string
created_from
string
last_updated
string
model
string
system_message
string
temperature
number | null
title
string
user_id
string
response_length
enum<string> | null
default:MEDIUM
Available options:
SHORT,
MEDIUM,
LONG