Get Feature Flags
GET/api/features
Returns the resolved feature-flag map for the account associated with the authenticated token. Each key is a feature name and each value is a boolean indicating whether that feature is enabled for the account. The same map is also included on GET /api/auth/profile under features; this standalone endpoint lets a client refresh feature state without re-fetching the full profile.
Authentication: Requires Bearer token.
Response fields (data):
granular_permissions(boolean) — granular role/permission authorization is enabled.
A feature absent from the map (or any value other than true) should be treated as disabled.
Request
Responses
- 200
- 401
- 403
- 429
OK
Response Headers
Unauthorized
Response Headers
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.