Skip to main content
GET
/
v2
/
scopes
List Scopes
curl --request GET \
  --url https://api.glider.fi/v2/scopes \
  --header 'X-API-KEY: <api-key>'
{
  "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"
      }
    ]
  }
}

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.

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:
TierMeaning
defaultAuto-granted on every new API key
standardSelf-service via dashboard (if tenant is active)
restrictedAdmin review and manual grant only
{
  "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"
      }
    ]
  }
}