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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
OK
data
object
required