curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/nsr/features' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"available_features": [
"string"
],
"enabled_features": [
"string"
]
}
List all features and their status
Returns the status of all NSR Machine features, indicating which are currently enabled and which are available for activation…
GET
/
api
/
v1
/
nsr
/
features
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/nsr/features' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"available_features": [
"string"
],
"enabled_features": [
"string"
]
}
Returns the status of all NSR Machine features, indicating which are
currently enabled and which are available for activation.
Available Features
Required scope:
library_learning: Extract reusable program componentsmetacognition: Uncertainty estimation and strategy selectionexplainability: Generate human-readable explanationscontinual_learning: EWC-based catastrophic forgetting preventionmcts: Monte Carlo Tree Search for program synthesisprobabilistic: Probabilistic reasoning with uncertaintygraph_of_thoughts: Branching reasoning with thought graphsinference_scaling: Compute scaling for better resultsvsa: Vector Symbolic Architecture for compositional semanticsdifferentiable_logic: Differentiable logical operations Example
curl -X GET 'https://api.nsr.stateset.com/api/v1/nsr/features' \
-H 'X-API-Key: your-api-key'
read
Response
FeaturesResponse
string[]
required
All available features
string[]
required
List of enabled features
Status codes
| Code | Meaning |
|---|---|
200 | List of features with status |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/nsr/features' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"available_features": [
"string"
],
"enabled_features": [
"string"
]
}
Last modified on August 31, 2026