- README
- Authentication
- Guides
- API Keys
- Chats
- Documents
- Knowledge Bots
Get all API Keys
GET
/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 GET 'https://app.crbnai.com/api/accounts/me/api-keys'
Responses
🟢200OK
application/json
Body
array of:
id
string <uuid>
required
created_at
string <date-time>
required
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"
}
]
Modified at 2023-11-28 16:14:03