Skip to main content
GET
/
chats
/
{id}
Get a chat by ID
curl --request GET \
  --url http://localhost:8080/api/v1/chats/{id} \
  --header 'Authorization: <api-key>'
{
  "attributes": {
    "groups": [
      {
        "attributes": {
          "name": "<string>"
        },
        "id": "<string>",
        "type": "<string>"
      }
    ],
    "llm_id": 123,
    "llm_settings_id": 123,
    "name": "<string>"
  },
  "id": "<string>",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

Path Parameters

id
integer
required

Chat ID

Response

OK

Chat response model

attributes
object
id
string
type
string