# Query Quota List - Documentation

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown is available with `Accept: text/markdown` and `.md` URL variants.

Source: /docs/api-reference/quota-list

# Query Quota List

GET

/

openapi

/

v1

/

user

/

quota

/

list

Try it

```
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 '
```

200

```
{
"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
}
```

##

[​](#request-headers)

Request Headers

[​](#param-content-type)

Content-Type

string

required

Enum: `application/json`

[​](#param-authorization)

Authorization

string

required

Bearer authentication format, for example: Bearer {{API Key}}.

##

[​](#query-parameters)

Query Parameters

[​](#param-modal)

modal

string

Quota modal. Common values: `llm`, `image`.

[​](#param-quota-type)

quotaType

string

Quota type. Common values: `RPM`, `TPM`, `IPM`.

[​](#param-product-type)

productType

string

Product type. Common values: `Public Endpoint`.

[​](#param-quota-object)

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)

Response Parameters

[​](#param-data)

data

object[]

required

Quota list.

Hide properties

[​](#param-modal-1)

modal

string

required

Quota modal.

[​](#param-quota-object-1)

quotaObject

string

required

Quota object display name. For model scenarios, this is usually the model name or model ID.

[​](#param-quota-type-1)

quotaType

string

required

Quota type.

[​](#param-product-type-1)

productType

string

required

Product type.

[​](#param-current-quota)

currentQuota

int32

required

Current account quota limit.

[​](#param-default-quota)

defaultQuota

int32

required

Default quota limit.

[​](#param-adjustable)

adjustable

bool

required

Whether quota adjustment can be requested.

[​](#param-quota-items)

quotaItems

object[]

required

Quota limits for different account tiers.

Hide properties

[​](#param-tier)

tier

string

required

Account tier. Possible values: `T1`, `T2`, `T3`, `T4`, `T5`.

[​](#param-quota)

quota

int32

required

Quota limit for the account tier.

[​](#param-total)

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 '
```

200

```
{
"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
}
```

Last modified on May 25, 2026
