curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/nsr/symbols' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"symbols": [
{
"has_program": true,
"id": 1001,
"name": "Two-Person Tent"
}
],
"total": 102
}
List all symbols in the vocabulary
Returns all symbols currently in the NSR Machine’s vocabulary, including their IDs, names, and whether they have associated programs…
GET
/
api
/
v1
/
nsr
/
symbols
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/nsr/symbols' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"symbols": [
{
"has_program": true,
"id": 1001,
"name": "Two-Person Tent"
}
],
"total": 102
}
Returns all symbols currently in the NSR Machine’s vocabulary, including
their IDs, names, and whether they have associated programs.
Example
Required scope:
curl -X GET 'https://api.nsr.stateset.com/api/v1/nsr/symbols' \
-H 'X-API-Key: your-api-key'
read
Response
ListSymbolsResponse
SymbolResponse[]
required
integer
required
Total count
Status codes
| Code | Meaning |
|---|---|
200 | List of all symbols in vocabulary |
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/symbols' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"symbols": [
{
"has_program": true,
"id": 1001,
"name": "Two-Person Tent"
}
],
"total": 102
}
Last modified on August 31, 2026