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

> **Required scope:** read

**Required scope:** `read`

### Response

`object`

<ResponseField name="plans" type="object[]" required>
  <Expandable title="plans">
    <ResponseField name="id" type="string" required />

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

    <ResponseField name="base_fee" type="number" required />

    <ResponseField name="included_outcomes" type="number" required />

    <ResponseField name="price_per_outcome" type="number" required />

    <ResponseField name="features" type="string[]" required />
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning                                                   |
| ----- | --------------------------------------------------------- |
| `200` | The plan catalog — a static list served by the API itself |
| `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/billing/plans' \
    --header "X-API-Key: $STATESET_NSR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "plans": [
      {
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "name": "Two-Person Tent",
        "base_fee": 49,
        "included_outcomes": 1.5,
        "price_per_outcome": 1.5,
        "features": []
      }
    ]
  }
  ```
</ResponseExample>
