CRBNai API
  1. Knowledge Bots
CRBNai API
  • README
  • Authentication
  • Guides
    • Creating a Knowledge Bot
  • API Keys
    • Get all API Keys
      GET
    • Create API Key
      POST
    • Delete API Key
      DELETE
  • Chats
    • Messages
      • Get Chat Messages
      • Post Chat Message
    • Recipes
      • Get All Chat Recipes
    • Get All Chats
      GET
    • Create Chat
      POST
  • Documents
    • Delete Document
      DELETE
    • Download Document
      GET
    • Update Document
      PUT
  • Knowledge Bots
    • Documents
      • Add Document to Knowledge Bot
      • Prepare Document Upload
    • Chats
      • Chat Messages
        • Get Messages of a Knowledge Bot chat
        • Post a message to a Knowlege Bot chat
      • Get all Knowledge Bot chats
      • Create Knowledge Bot chat
    • Chats - deprecated
      • Chat with a Knowledge Bot
    • Create Knowledge Bot
      POST
    • Get All Knowledge Bots
      GET
    • Get Knowledge Bot by ID
      GET
    • Delete Knowledge Bot by ID
      DELETE
    • Update Knowledge Bot by ID
      PUT
  1. Knowledge Bots

Get All Knowledge Bots

GET
/api/knowledge-bots
kb
Get the knowledge bots the logged in user has access to.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.crbnai.com/api/knowledge-bots'
Response Response Example
[
  {
    "title": "inventore",
    "language_model": "in",
    "owner_id": "ebaa6194-d565-4bed-9f78-0877114552ca",
    "description": "Sapiente ipsum aperiam eveniet exercitationem odit recusandae rem nostrum. Neque officiis impedit dolorem. Quidem non iste porro deserunt enim quo labore. Ipsam voluptatem veritatis maiores accusamus.",
    "id": "7afe276a-4bf8-43df-9f5f-3aa0cdbbf273",
    "created_at": "2066-03-03T22:31:24.776Z"
  },
  {
    "title": "praesentium",
    "language_model": "aliquam",
    "owner_id": "b0604120-ee60-4ca9-aec6-73858f7f4f07",
    "description": "Rerum ducimus qui delectus. Placeat quia ullam. Quibusdam facere ut debitis aut. Dicta perferendis quos beatae amet veniam.",
    "created_at": "2011-08-13T05:52:00.233Z",
    "id": "fd57fd63-82de-40c6-8f41-1aab354f8e92"
  },
  {
    "title": "magnam",
    "language_model": "tenetur",
    "owner_id": "2f74f74a-950d-4219-ad22-dd42002ee807",
    "created_at": "2034-08-27T16:20:03.017Z",
    "id": "d41cec7e-b43a-45fd-8f10-234800c2849e",
    "description": "Iure est ratione quos nulla omnis distinctio rem aut. Soluta dolores recusandae ratione veniam corrupti quas. Nostrum dolorem unde repellat. Illum mollitia odio sint fuga officia praesentium. Voluptatum quibusdam molestiae."
  },
  {
    "title": "commodi",
    "language_model": "ad",
    "owner_id": "2a3a2988-8635-4df4-a2c8-4acd8cc8c2fe",
    "created_at": "2088-09-10T13:58:09.406Z",
    "description": "Maxime maxime ducimus velit nisi. Nesciunt consequatur exercitationem nisi. At laudantium harum quod.",
    "id": "67914e99-1321-4342-b21d-744eac19bdcb"
  },
  {
    "title": "numquam",
    "language_model": "vero",
    "owner_id": "41b27fd8-25c7-42de-8c87-58d22a9407b2",
    "description": "Quidem occaecati ducimus enim cum. Explicabo soluta molestias iure odio reiciendis eius. Aperiam harum consectetur ratione minus libero occaecati eveniet.",
    "id": "22da8ef7-53e3-43e7-a7c8-d9c9637089d1",
    "created_at": "2003-10-10T13:04:20.003Z"
  }
]

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200OK
application/json
Body
array of:
id
string <uuid>
optional
UUID of the Knowledge Bot.
title
string 
required
User defined title for the Knowledge Bot.
created_at
string 
optional
Date (ISO 8601) that the knowledge base was created at.
description
string 
optional
User defined description of the Knowledge Bot.
embeddable
boolean 
optional
Allows embedding the Knowledge Bot for public use.
llm_config
object (LanguageModelConfig) 
optional
Information and configuration of the language model.
model
string 
required
The name of the used language model
vendor
string 
required
Vendor of the used language model
owner_id
string <uuid>
optional
UUID of the Owner of this Knowledge Bot.
user_metadata
string  | integer  | boolean  | array  | object  | number  | null 
optional
Arbitrary JSON metadata for a Knowledge Bot.
Previous
Create Knowledge Bot
Next
Get Knowledge Bot by ID
Built with