Skip to main content
POST
/
limits
/
values
/
list
Advanced list of limit values.
curl --request POST \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/limits/values/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'cdf-version: <cdf-version>' \
  --data '
{
  "filter": {
    "prefix": {
      "property": [
        "limitId"
      ],
      "value": "atlas."
    }
  },
  "limit": 1000,
  "cursor": "string"
}
'
{
  "items": [
    {
      "limitId": "atlas.monthly_ai_tokens",
      "value": 1000
    },
    {
      "limitId": "atlas.monthly_ai_prompts",
      "value": 500
    }
  ],
  "nextCursor": "eyJjdXJzb3IiOiAiMTIzNDU2In0="
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Headers

cdf-version
enum<string>
required
Available options:
20230101-alpha

Body

application/json

Request body for list endpoints with filtering options.

filter
object

Filter to apply to the list operation. To retrieve all limits for a specific service, use the "prefix" operator where the property is the limit's key, e.g., {"prefix": {"property": ["limitId"], "value": "atlas."}}

limit
integer
default:1000

Maximum number of items to return.

Required range: x <= 1000
cursor
string

Cursor to use for paging through results.

Response

Filtered limits.

A list of flattened limit items.

items
object[]
required
nextCursor
string

Cursor to get the next page of results (if available).

Last modified on April 23, 2026