> ## 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 Risk Configuration

> Returns the workspace risk configuration including exposure signals, behaviours, tier thresholds, and defaults.



## OpenAPI

````yaml get /v2/risk/config
openapi: 3.0.0
info:
  title: Range Risk API
  description: The Range Risk API for risk assessment of crypto addresses.
  version: 1.7.8
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
tags:
  - name: Risk
    description: Get risk information about a crypto address.
  - name: Risk v2
    description: >-
      Address risk assessment, workspace configuration, and signals catalogue
      (API v2).
  - name: Simulator
    description: Simulate a transaction on a network.
  - name: Alert Templates
    description: Browse alert rule templates available to the workspace.
  - name: Alert Rules
    description: Create and manage workspace alert rules.
  - name: Alert Events
    description: List and retrieve fired alert events.
  - name: Channels
    description: Configure alert delivery channels.
paths:
  /v2/risk/config:
    get:
      tags:
        - Risk v2
      summary: Get Workspace Risk Configuration
      description: >-
        Returns the active risk configuration for your workspace. A workspace
        with no stored config returns empty arrays for all three pillars —
        nothing from the signals catalogue is auto-applied.
      operationId: getConfig
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RiskConfigSpecDto'
components:
  schemas:
    RiskConfigSpecDto:
      type: object
      properties:
        workspace_id:
          type: string
          example: ws-12345
        attribution_signals:
          type: array
          items:
            $ref: '#/components/schemas/AttributionConfigDto'
        exposure_signals:
          type: array
          items:
            $ref: '#/components/schemas/ExposureConfigDto'
        behaviours:
          type: array
          items:
            $ref: '#/components/schemas/BehaviourConfigDto'
        updated_at:
          type: string
          example: '2026-05-18T10:00:00Z'
      required:
        - workspace_id
        - attribution_signals
        - exposure_signals
        - behaviours
        - updated_at
    AttributionConfigDto:
      type: object
      properties:
        signal:
          type: string
          example: sanctions_ofac
        enabled:
          type: boolean
          example: true
        severity:
          type: string
          example: severe
          enum:
            - severe
            - high
            - medium
            - low
      required:
        - signal
        - enabled
        - severity
    ExposureConfigDto:
      type: object
      properties:
        signal:
          type: string
          example: obfuscation
        enabled:
          type: boolean
          example: true
        thresholds:
          description: Maps observed exposure fraction (0-1) to severity.
          allOf:
            - $ref: '#/components/schemas/SeverityThresholdsMapDto'
        floor_usd:
          type: number
          minimum: 0
          example: 1000
          description: >-
            Minimum exposed USD required for the signal to fire even when the
            exposure % threshold is met. Defaults to 0 when omitted.
      required:
        - signal
        - enabled
        - thresholds
    BehaviourConfigDto:
      type: object
      properties:
        behaviour:
          type: string
          example: smurfing
        enabled:
          type: boolean
          example: true
        thresholds:
          description: >-
            Maps detection confidence (0-1) to severity. Below low threshold =
            none.
          allOf:
            - $ref: '#/components/schemas/SeverityThresholdsMapDto'
        ignore:
          type: boolean
          example: false
          description: Detect but do not include in severity determination
      required:
        - behaviour
        - enabled
        - thresholds
        - ignore
    SeverityThresholdsMapDto:
      type: object
      properties:
        low:
          type: number
          minimum: 0
          example: 0.01
        medium:
          type: number
          minimum: 0
          example: 0.05
        high:
          type: number
          minimum: 0
          example: 0.2
        severe:
          type: number
          minimum: 0
          example: 0.5
      required:
        - low
        - medium
        - high
        - severe
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````