> ## 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 Alert Channels

> Returns every non-deleted alert channel for your workspace, including disabled ones.



## OpenAPI

````yaml get /v1/risk/channels
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:
  /v1/risk/channels:
    get:
      tags:
        - Channels
      summary: List alert channels for the caller workspace
      description: >-
        Returns every non-deleted alert channel for your workspace, including
        disabled ones. Each item carries `enabled` (your on/off state) and
        `connected` (delivery readiness). To hide a channel, delete it —
        disabling only stops delivery.
      operationId: listChannels
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAlertChannelsResponseDto'
components:
  schemas:
    ListAlertChannelsResponseDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/AlertChannelListItemDto'
      required:
        - items
    AlertChannelListItemDto:
      type: object
      properties:
        id:
          type: string
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        workspace_id:
          type: string
          example: workspace-123
        name:
          type: string
          example: My Slack Channel
        type:
          enum:
            - slack
            - telegram
            - discord
            - webhook
            - pagerduty
            - email
            - incidentio
          type: string
          example: slack
        enabled:
          type: boolean
          example: true
        connected:
          type: boolean
          description: >-
            Whether the channel is ready to receive deliveries. Always true
            except for a telegram channel that has not yet linked a chat.
          example: true
        created_at:
          type: string
          example: '2026-05-14T12:00:00.000Z'
        params:
          type: object
          description: >-
            Type-specific params surfaced in list items. Present only for
            telegram channels, carrying the registration `unique_code`.
          additionalProperties: true
          example:
            unique_code: abc123
      required:
        - id
        - workspace_id
        - name
        - type
        - enabled
        - connected
        - created_at
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````