API Keys

API key management endpoints

List API keys

get
/api/v1/api-keys

Get a list of your API keys with optional full key display and plan limits

Authorizations
AuthorizationstringRequired

API key authentication. Include your API key in the Authorization header:

Authorization: Bearer vb_your_api_key_here
Query parameters
fullbooleanOptional

Show full API keys instead of masked versions

Default: false
Responses
chevron-right
200

List of API keys with plan limits

application/json
get
/api/v1/api-keys

Create API key

post
/api/v1/api-keys

Create a new API key

Authorizations
AuthorizationstringRequired

API key authentication. Include your API key in the Authorization header:

Authorization: Bearer vb_your_api_key_here
Body
namestring · min: 1 · max: 100Required

Human-readable name for the API key

Responses
chevron-right
200

API key created successfully

application/json
post
/api/v1/api-keys

Delete API key

delete
/api/v1/api-keys

Delete an API key

Authorizations
AuthorizationstringRequired

API key authentication. Include your API key in the Authorization header:

Authorization: Bearer vb_your_api_key_here
Query parameters
idstringRequired

API key ID to delete

Example: key_123
Responses
chevron-right
200

API key deleted successfully

application/json
delete
/api/v1/api-keys

Last updated