Skip to main content
GET
/
openapi
/
v1
/
user
/
quota
/
list
curl --request GET \
  --url 'https://api.novita.ai/openapi/v1/user/quota/list?modal=llm&quotaType=RPM&productType=Public%20Endpoint&quotaObject=deepseek-v3' \
  --header 'Authorization: Bearer <API_KEY>'
{
  "data": [
    {
      "modal": "llm",
      "quotaObject": "deepseek-v3",
      "quotaType": "RPM",
      "productType": "Public Endpoint",
      "currentQuota": 60,
      "defaultQuota": 60,
      "adjustable": true,
      "quotaItems": [
        {
          "tier": "T1",
          "quota": 60
        },
        {
          "tier": "T2",
          "quota": 120
        }
      ]
    }
  ],
  "total": 1
}

Documentation Index

Fetch the complete documentation index at: https://novita.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Request Headers

Content-Type
string
required
Enum: application/json
Authorization
string
required
Bearer authentication format, for example: Bearer {{API Key}}.

Query Parameters

modal
string
Quota modal. Common values: llm, image.
quotaType
string
Quota type. Common values: RPM, TPM, IPM.
productType
string
Product type. Common values: Public Endpoint.
quotaObject
string
Quota object. For model scenarios, pass a model ID such as deepseek-v3. The server supports fuzzy matching. If empty, all quotas visible to the current account are returned.

Response Parameters

data
object[]
required
Quota list.
total
int32
required
Number of returned quotas.
curl --request GET \
  --url 'https://api.novita.ai/openapi/v1/user/quota/list?modal=llm&quotaType=RPM&productType=Public%20Endpoint&quotaObject=deepseek-v3' \
  --header 'Authorization: Bearer <API_KEY>'
{
  "data": [
    {
      "modal": "llm",
      "quotaObject": "deepseek-v3",
      "quotaType": "RPM",
      "productType": "Public Endpoint",
      "currentQuota": 60,
      "defaultQuota": 60,
      "adjustable": true,
      "quotaItems": [
        {
          "tier": "T1",
          "quota": 60
        },
        {
          "tier": "T2",
          "quota": 120
        }
      ]
    }
  ],
  "total": 1
}