> ## 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.

# List Signals & Behaviours

> Returns the full catalogue of available exposure signals and behaviour detectors with default severities, weights, and supported modes.



## OpenAPI

````yaml get /v2/risk/signals
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/signals:
    get:
      tags:
        - Risk v2
      summary: List Available Signals and Behaviours
      description: >-
        Returns the catalogue of available attribution signals, exposure
        signals, and behaviours. This is read-only metadata — not auto-applied
        to workspace configs.
      operationId: getSignals
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignalsCatalogueDto'
components:
  schemas:
    SignalsCatalogueDto:
      type: object
      properties:
        signals:
          type: array
          items:
            $ref: '#/components/schemas/SignalMetaDto'
        behaviours:
          type: array
          items:
            $ref: '#/components/schemas/BehaviourMetaDto'
      required:
        - signals
        - behaviours
    SignalMetaDto:
      type: object
      properties:
        signal:
          type: string
          example: ofac-sanctioned
        name:
          type: string
          example: OFAC Sanctioned
      required:
        - signal
        - name
    BehaviourMetaDto:
      type: object
      properties:
        behaviour:
          type: string
          example: chain-peeling
        description:
          type: string
          example: Funds moved through series of wallets, small amounts skimmed per hop
        default_severity:
          type: string
          example: high
          enum:
            - severe
            - high
            - medium
            - low
        default_thresholds:
          description: Suggested confidence-to-severity mapping.
          allOf:
            - $ref: '#/components/schemas/SeverityThresholdsMapDto'
        priority:
          type: string
          example: v2
          enum:
            - v2
            - future
        example:
          type: string
          example: $100k -> $85k -> $70k -> $55k -> $40k across 5 addresses
      required:
        - behaviour
        - description
        - default_severity
        - default_thresholds
        - priority
        - example
    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

````