CRBNai API
  1. API Keys
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. API Keys

Get all API Keys

GET
/api/accounts/me/api-keys
api
Use this endpoint to get the API keys for the current user.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.crbnai.com/api/accounts/me/api-keys'
Response Response Example
[
  {
    "id": "675cbe78-412f-46c3-9d60-9c52b930841c",
    "created_at": "2086-05-24T13:46:47.8Z"
  },
  {
    "id": "90e6182e-d90e-47a6-88c4-829c78a7d454",
    "created_at": "2061-09-07T22:37:25.436Z"
  }
]

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>
required
ID assigned to this API key.
created_at
string <date-time>
required
Date (ISO 8601) that this API key was created.
Previous
Creating a Knowledge Bot
Next
Create API Key
Built with