Skip to main content
GET
/
limits
/
values
/
{limitId}
Retrieve a limit value by its id
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/limits/values/{limitId} \
  --header 'Authorization: Bearer <token>' \
  --header 'cdf-version: <cdf-version>'
{
  "limitId": "atlas.monthly_ai_tokens",
  "value": 1000
}

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

Path Parameters

limitId
string
required

Limits are identified by an id containg the service name and a service-scoped limit name.

For instance atlas.monthly_ai_tokens is the id of the atlas service limit monthly_ai_tokens.

Service and limit names are always inlower_snake_case.

Response

The requested limit.

A singular representation of a Limit.

limitId
string
required

Limits are identified by an id containg the service name and a service-scoped limit name.

For instance atlas.monthly_ai_tokens is the id of the atlas service limit monthly_ai_tokens.

Service and limit names are always inlower_snake_case.

value
number
required

The numeric value of the limit.

Last modified on April 23, 2026