- README
- Authentication
- Guides
- API Keys
- Chats
- Documents
- Knowledge Bots
Create API Key
POST
/api/accounts/me/api-keys
api
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.crbnai.com/api/accounts/me/api-keys'
Responses
🟢200OK
application/json
Body
id
string <uuid>
required
created_at
string <date-time>
required
token
stringÂ
required
Example:
apikeyv1_asdf...
Example
{
"id": "5826e10c-aeef-4de0-9fac-bbd7f9313a2b",
"created_at": "2024-05-02T12:57:26.432Z",
"token": "apikeyv1_asdf"
}
🟠400Bad Request
Modified at 2023-11-28 16:14:21