API Keys
View API Key Rate Limits
API Keys
View API Key Rate Limits
Return details about user balances and rate limits.
GET
/
api_keys
/
rate_limits
curl --request GET \
--url https://api.venice.ai/api/v1/api_keys/rate_limits \
--header 'Authorization: Bearer <token>'
{
"data": {
"apiTier": {
"id": "paid",
"isCharged": true
},
"accessPermitted": true,
"balances": {
"VCU": 100.023,
"USD": 50.23
},
"rateLimits": [
{
"apiModelId": "llama-3.3-70b",
"rateLimits": [
{
"amount": 100,
"type": "RPM"
}
]
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
OK
Whether the user can consume the API
The ID of the API model
curl --request GET \
--url https://api.venice.ai/api/v1/api_keys/rate_limits \
--header 'Authorization: Bearer <token>'
{
"data": {
"apiTier": {
"id": "paid",
"isCharged": true
},
"accessPermitted": true,
"balances": {
"VCU": 100.023,
"USD": 50.23
},
"rateLimits": [
{
"apiModelId": "llama-3.3-70b",
"rateLimits": [
{
"amount": 100,
"type": "RPM"
}
]
}
]
}
}