> ## 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 an Alert Channel

> Returns the details of one alert channel that belongs to your workspace.



## OpenAPI

````yaml get /v1/risk/channels/{channel_id}
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/{channel_id}:
    get:
      tags:
        - Channels
      summary: Fetch a single alert channel
      description: >-
        Returns the details of one alert channel that belongs to your workspace.
        Disabled channels are still returned (200); only deleted channels return
        404.
      operationId: getChannel
      parameters:
        - name: channel_id
          required: true
          in: path
          description: The alert channel id.
          schema:
            type: string
            example: 44444444-4444-4444-4444-444444444445
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertChannelDto'
components:
  schemas:
    AlertChannelDto:
      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 channel parameters.
          additionalProperties: true
          example:
            webhook_url: https://hooks.slack.com/services/T00/B00/xxxx
        deleted_at:
          type: string
          nullable: true
          description: Soft-delete timestamp. Null while the channel is active.
          example: null
        updated_at:
          type: string
          example: '2026-05-14T12:00:00.000Z'
      required:
        - id
        - workspace_id
        - name
        - type
        - enabled
        - connected
        - created_at
        - updated_at
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````