Skip to main content
GET
/
assistants
List Assistants
curl --request GET \
  --url https://api.dev.opencorpus.ai/assistants/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "user_id": "<string>",
    "name": "<string>",
    "system_instruction": "<string>",
    "voice": {},
    "llm": {},
    "transcriber": {},
    "knowledge_base": {},
    "transport": {},
    "description": "<string>",
    "first_message": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "attached_knowledge_bases": []
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

id
string
required
user_id
string
required
name
string
required
system_instruction
string
required
voice
Voice · object
required
llm
Llm · object
required
transcriber
Transcriber · object
required
knowledge_base
Knowledge Base · object
required
transport
Transport · object
required
description
string | null
first_message
string | null
created_at
string | null
updated_at
string | null
attached_knowledge_bases
Attached Knowledge Bases · object[]