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

# Live GSS seed-pack metadata.

> **Required scope:** read

**Required scope:** `read`

### Response

`GssSeedInfoResponse`

<ResponseField name="bytes" type="integer" required />

<ResponseField name="grounded" type="boolean" required>
  True when the pack parsed and carries at least one rule — the 'grounding is live' signal that used to fail silently.
</ResponseField>

<ResponseField name="horn_clauses" type="integer" required />

<ResponseField name="rules" type="integer" required />

<ResponseField name="source" type="string" required>
  Where the pack was resolved from: `env:NSR_GSS_SEED_PATH`, `cwd:data/rules/rules_gss_seed.json`, or `embedded`.
</ResponseField>

<ResponseField name="symbol_vocabulary" type="integer" required />

<ResponseField name="unique_orgs" type="integer" required />

<ResponseField name="v3" type="object">
  <Expandable title="v3">
    <ResponseField name="bytes" type="integer" required />

    <ResponseField name="citable_rules" type="integer" required />

    <ResponseField name="loaded" type="boolean" required>
      Always `true` when this block is present; the block itself is omitted from the response (`skip_serializing_if`) when no v3 seed is loaded, so callers never see `loaded: false`.
    </ResponseField>

    <ResponseField name="org_bindings" type="integer" required />

    <ResponseField name="predicates" type="integer" required />

    <ResponseField name="rules" type="integer" required />

    <ResponseField name="schema_version" type="string" required />

    <ResponseField name="source" type="string" required>
      Where the pack was resolved from: `env:NSR_GSS_SEED_V3_PATH` or `cwd:data/rules/rules_gss_seed_v3.json`.
    </ResponseField>

    <ResponseField name="symbols" type="integer" required />
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | Live seed-pack metadata                            |
| `401` | Unauthorized                                       |
| `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/gss/seed' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "bytes": 1,
    "grounded": true,
    "horn_clauses": 1,
    "rules": 1,
    "source": "string",
    "symbol_vocabulary": 1,
    "unique_orgs": 1,
    "v3": {
      "bytes": 1,
      "citable_rules": 1,
      "loaded": true,
      "org_bindings": 1,
      "predicates": 1,
      "rules": 1,
      "schema_version": "string",
      "source": "string",
      "symbols": 1
    }
  }
  ```
</ResponseExample>
