curl -X GET "https://api.nonefivem.com/cloud/flags/quota" \
-H "Authorization: Bearer your-api-key"
{
"max": 50,
"used": 12,
"subscribed": true,
"locked": 0
}
{
"max": 5,
"used": 12,
"subscribed": false,
"locked": 7
}
Feature Flags
Get Flag Quota
Report your organization’s feature flag allowance
GET
/
flags
/
quota
curl -X GET "https://api.nonefivem.com/cloud/flags/quota" \
-H "Authorization: Bearer your-api-key"
{
"max": 50,
"used": 12,
"subscribed": true,
"locked": 0
}
{
"max": 5,
"used": 12,
"subscribed": false,
"locked": 7
}
Reports how many flags your organization may define at its current subscription level, and how much of that allowance is in use.
Authorization
string
required
Bearer token for authentication. Format:
Bearer <your-api-key>Required Permission
FLAGS_READ
Response
number
Flags allowed at the current subscription level —
5 without a subscription,
50 with any active one.number
Flags currently defined, archived ones included.
boolean
Whether the organization has any active subscription. The allowance is a perk
of being a paying customer, so any subscription raises it — not a
flags-specific one.
number
Flags beyond
max, frozen until the organization subscribes again or removes
enough flags. Locked flags keep serving their published values; only editing
them is blocked. See Feature
Flags.curl -X GET "https://api.nonefivem.com/cloud/flags/quota" \
-H "Authorization: Bearer your-api-key"
{
"max": 50,
"used": 12,
"subscribed": true,
"locked": 0
}
{
"max": 5,
"used": 12,
"subscribed": false,
"locked": 7
}

