curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/nsr/got' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"connection_count": 1,
"enabled": true,
"thought_count": 1,
"topology": "string"
}
Get Graph of Thoughts status
Required scope: read
GET
/
api
/
v1
/
nsr
/
got
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/nsr/got' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"connection_count": 1,
"enabled": true,
"thought_count": 1,
"topology": "string"
}
Required scope:
read
Response
GraphOfThoughtsResponse
integer
required
Number of connections
boolean
required
Whether GoT is enabled
integer
required
Number of thoughts in the graph
string
required
Topology type
Status codes
| Code | Meaning |
|---|---|
200 | GoT 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/got' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"connection_count": 1,
"enabled": true,
"thought_count": 1,
"topology": "string"
}
Last modified on August 31, 2026