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

# List/search Graph-of-Thoughts nodes

> **Required scope:** read

**Required scope:** `read`

### Query parameters

<ParamField query="q" type="string">
  Optional substring filter (case-insensitive)
</ParamField>

<ParamField query="top_k" type="integer">
  Maximum number of thoughts to return
</ParamField>

<ParamField query="min_score" type="number (float)">
  Optional minimum score threshold
</ParamField>

### Response

`ThoughtResponse[]` — each element:

<ResponseField name="content" type="string" required>
  Content
</ResponseField>

<ResponseField name="id" type="integer" required>
  Thought ID
</ResponseField>

<ResponseField name="score" type="number (float)" required>
  Score
</ResponseField>

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | Thoughts                                           |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset |
| `503` | GoT not enabled                                    |

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

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "content": "Two-person tent, green — replacement for damaged pole set.",
      "id": 1001,
      "score": 7.5
    }
  ]
  ```
</ResponseExample>
