> ## 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 the workspace token whitelist

> Returns the workspace's stored overrides and an updated_at. Never 404s — an empty `overrides` array is the correct steady state for a workspace that has never patched its whitelist, and `updated_at` is null until it does.



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/token-whitelist
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.16
  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/token-whitelist:
    get:
      tags:
        - Token Whitelist
      summary: Get the workspace token whitelist
      description: >-
        Returns the workspace's stored overrides and an updated_at. Never 404s —
        an empty `overrides` array is the correct steady state for a workspace
        that has never patched its whitelist, and `updated_at` is null until it
        does.
      operationId: getWhitelist
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenWhitelistResponseDto'
components:
  schemas:
    TokenWhitelistResponseDto:
      type: object
      properties:
        overrides:
          type: array
          items:
            oneOf:
              - $ref: '#/components/schemas/AssetOverrideDto'
              - $ref: '#/components/schemas/TokenOverrideDto'
        updated_at:
          type: string
          nullable: true
          format: date-time
      required:
        - overrides
        - updated_at
    AssetOverrideDto:
      type: object
      properties:
        kind:
          type: string
          enum:
            - asset
        symbol:
          type: string
          example: USDT
        state:
          type: string
          enum:
            - 'on'
            - 'off'
      required:
        - kind
        - symbol
        - state
    TokenOverrideDto:
      type: object
      properties:
        kind:
          type: string
          enum:
            - token
        network:
          type: string
          example: ethereum
        denom:
          type: string
          example: '0xdac17f958d2ee523a2206206994597c13d831ec'
        state:
          type: string
          enum:
            - 'on'
            - 'off'
      required:
        - kind
        - network
        - denom
        - state
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````