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 Knowledge Bot by ID

GET
/api/knowledge-bots/{id}
Get a Knowledge Bot by its id.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.crbnai.com/api/knowledge-bots/'
Response Response Example
{
    "title": "eum",
    "language_model": "quod",
    "owner_id": "uuid",
    "documents": [
        {
            "name": "modi",
            "id": "a5f3a5df-5c4e-4f64-ae6c-fab3142e74cf",
            "created_at": "2077-08-04T04:48:45.453Z",
            "status": "beatae"
        },
        {
            "name": "labore",
            "id": "cbaca47a-dac4-4678-a294-7ea52a30ba93",
            "created_at": "2095-06-21T18:31:35.965Z",
            "status": "debitis"
        },
        {
            "name": "vero",
            "status": "minima",
            "created_at": "2020-07-18T16:11:44.61Z",
            "id": "777a2893-46ac-4680-b3da-b53bc95ee353"
        },
        {
            "name": "similique",
            "status": "rem",
            "id": "b138c936-ff6a-44ec-9d88-eccfada0627f",
            "created_at": "2054-02-28T19:58:12.24Z"
        }
    ],
    "description": "Id libero ducimus aspernatur delectus consectetur reprehenderit dolore. Eius cumque odio nostrum delectus pariatur consequuntur. Repellat ipsa enim vel minima quod error nesciunt. Hic error fuga mollitia excepturi. Ipsam totam voluptates eius vel deleniti labore laborum.",
    "id": "0b5a4682-4b61-4a67-a285-1690bafe1cdc",
    "created_at": "2034-04-17T00:43:35.426Z"
}

Request

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

Responses

🟢200OK
application/json
Body

Modified at 2023-12-12 06:38:02
Previous
Get All Knowledge Bots
Next
Delete Knowledge Bot by ID
Built with