API Keys
List API Keys
Venice APIs
- API Spec
- Rate Limits
- Error Codes
- Chat
- Images
- Audio
- Embeddings
- Text
- Models
- API Keys
- API Key Rate Limits
- Characters
- Billing
API Keys
List API Keys
Return a list of API keys.
GET
/
api_keys
curl --request GET \
--url https://api.venice.ai/api/v1/api_keys \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"apiKeyType": "ADMIN",
"consumptionLimits": {
"usd": 50,
"vcu": 100
},
"createdAt": "2023-10-01T12:00:00.000Z",
"description": "Example API Key",
"expiresAt": "2023-10-01T12:00:00.000Z",
"id": "e28e82dc-9df2-4b47-b726-d0a222ef2ab5",
"last6Chars": "2V2jNW",
"lastUsedAt": "2023-10-01T12:00:00.000Z",
"usage": {
"trailingSevenDays": {
"usd": "10.2424",
"vcu": "42.2315"
}
}
}
],
"object": "list"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://api.venice.ai/api/v1/api_keys \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"apiKeyType": "ADMIN",
"consumptionLimits": {
"usd": 50,
"vcu": 100
},
"createdAt": "2023-10-01T12:00:00.000Z",
"description": "Example API Key",
"expiresAt": "2023-10-01T12:00:00.000Z",
"id": "e28e82dc-9df2-4b47-b726-d0a222ef2ab5",
"last6Chars": "2V2jNW",
"lastUsedAt": "2023-10-01T12:00:00.000Z",
"usage": {
"trailingSevenDays": {
"usd": "10.2424",
"vcu": "42.2315"
}
}
}
],
"object": "list"
}