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

# List Scopes

> Returns all API scopes with descriptions and granting tiers.

Returns every scope defined in the system. Use this to discover what
permissions are available and how they are granted.

* Auth: none (public endpoint)
* Rate limit: global only

Each scope has a **tier** that determines how it can be granted:

| Tier         | Meaning                                          |
| ------------ | ------------------------------------------------ |
| `default`    | Auto-granted on every new API key                |
| `standard`   | Self-service via dashboard (if tenant is active) |
| `restricted` | Admin review and manual grant only               |

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "scopes": [
        {
          "name": "strategies:read",
          "description": "List and view strategies",
          "tier": "default"
        },
        {
          "name": "strategies:write",
          "description": "Create strategies and publish versions",
          "tier": "standard"
        },
        {
          "name": "portfolios:read",
          "description": "List and view user portfolios",
          "tier": "default"
        },
        {
          "name": "portfolios:write",
          "description": "Pause, resume, and trigger rebalances",
          "tier": "standard"
        },
        {
          "name": "enroll:write",
          "description": "Enroll new users into a strategy (creates smart accounts and a portfolio)",
          "tier": "standard"
        }
      ]
    }
  }
  ```
</ResponseExample>
