> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Graph of Thoughts status

> **Required scope:** read

**Required scope:** `read`

### Response

`GraphOfThoughtsResponse`

<ResponseField name="connection_count" type="integer" required>
  Number of connections
</ResponseField>

<ResponseField name="enabled" type="boolean" required>
  Whether GoT is enabled
</ResponseField>

<ResponseField name="thought_count" type="integer" required>
  Number of thoughts in the graph
</ResponseField>

<ResponseField name="topology" type="string" required>
  Topology type
</ResponseField>

### 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 |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.nsr.stateset.com/api/v1/nsr/got' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "connection_count": 1,
    "enabled": true,
    "thought_count": 1,
    "topology": "string"
  }
  ```
</ResponseExample>
