Skip to main content
GET
/
limits
/
values
List all limit values
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/limits/values \
  --header 'Authorization: Bearer <token>' \
  --header 'cdf-version: <cdf-version>'
{
  "items": [
    {
      "limitId": "atlas.monthly_ai_tokens",
      "value": 1000
    },
    {
      "limitId": "files.storage_bytes",
      "value": 500
    },
    {
      "limitId": "functions.concurrent_executions",
      "value": 50
    }
  ],
  "nextCursor": "string"
}

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

Query Parameters

cursor
string

Cursor to use for paging through results.

limit
integer<int32>
default:1000

Return up to this many results.

Required range: x <= 1000

Response

A list of limits for all limits for a project.

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