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

# Get all workspace plan definitions

> Returns every plan with its numeric rank and per-feature limits (alert rules, trail tabs, tracked addresses). The client fetches this once on startup and stores it in app context; individual workspace plan assignment lives in the watson-app DB.



## OpenAPI

````yaml /api-reference/platform-api.json get /v1/workspace/config
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.13
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v1/workspace/config:
    get:
      tags:
        - Workspace Config
      summary: Get all workspace plan definitions
      description: >-
        Returns every plan with its numeric rank and per-feature limits (alert
        rules, trail tabs, tracked addresses). The client fetches this once on
        startup and stores it in app context; individual workspace plan
        assignment lives in the watson-app DB.
      operationId: getAll
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllWorkspacePlansDto'
components:
  schemas:
    AllWorkspacePlansDto:
      type: object
      properties:
        plans:
          description: All plan definitions ordered by ascending rank
          type: array
          items:
            $ref: '#/components/schemas/WorkspacePlanDefinitionDto'
      required:
        - plans
    WorkspacePlanDefinitionDto:
      type: object
      properties:
        plan:
          type: string
          description: Plan name
          example: premium
        rank:
          type: number
          description: Numeric rank — higher means more capable
          example: 30
        limits:
          $ref: '#/components/schemas/WorkspaceLimitsDto'
      required:
        - plan
        - rank
        - limits
    WorkspaceLimitsDto:
      type: object
      properties:
        alert_rules:
          type: number
          description: Maximum alert rules allowed
        trail_tabs:
          type: number
          description: Maximum trail/investigation tabs allowed
        addresses:
          type: number
          description: Maximum tracked addresses allowed
      required:
        - alert_rules
        - trail_tabs
        - addresses
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````