> ## 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 workspace concentration

> Returns asset, venue, and network concentration computed over the stored balances of the caller workspace accounts. Pass refresh=true to refresh balances first (slow: live provider calls).



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/accounts/concentration
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:
  /v2/accounts/concentration:
    get:
      tags:
        - Accounts
      summary: Get workspace concentration
      description: >-
        Returns asset, venue, and network concentration computed over the stored
        balances of the caller workspace accounts. Pass refresh=true to refresh
        balances first (slow: live provider calls).
      operationId: getConcentration
      parameters:
        - name: refresh
          required: false
          in: query
          description: >-
            When true, synchronously refreshes every account balance in the
            workspace (live provider calls) before computing. Slow on large
            workspaces — do not set on polled requests.
          schema:
            default: false
            type: boolean
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConcentrationResponseDto'
components:
  schemas:
    ConcentrationResponseDto:
      type: object
      properties:
        total_usd:
          type: string
          example: '1250000.00'
        as_of:
          type: string
          nullable: true
          example: '2026-07-09T12:00:00.000Z'
          description: >-
            Oldest balance snapshot included in the calculation; null when no
            balances are stored yet
        dimensions:
          $ref: '#/components/schemas/ConcentrationDimensionsDto'
      required:
        - total_usd
        - as_of
        - dimensions
    ConcentrationDimensionsDto:
      type: object
      properties:
        asset:
          type: array
          items:
            $ref: '#/components/schemas/ConcentrationEntryDto'
        venue:
          type: array
          items:
            $ref: '#/components/schemas/ConcentrationEntryDto'
        network:
          type: array
          items:
            $ref: '#/components/schemas/ConcentrationEntryDto'
      required:
        - asset
        - venue
        - network
    ConcentrationEntryDto:
      type: object
      properties:
        key:
          type: string
          example: USDC
        usd_value:
          type: string
          example: '500000.00'
        share:
          type: number
          example: 0.4
          description: Fraction of total_usd, 0..1
      required:
        - key
        - usd_value
        - share
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````