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

> Browse the alert rule templates your workspace has access to.



## OpenAPI

````yaml get /v1/risk/alert-templates
openapi: 3.0.0
info:
  title: Range Risk API
  description: The Range Risk API for risk assessment of crypto addresses.
  version: 1.7.11
  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/alert-templates:
    get:
      tags:
        - Alert Templates
      summary: List alert rule templates available to the workspace
      description: >-
        Browse the alert rule templates your workspace has access to. Narrow the
        results by network, severity, or tags, or type a few words to search by
        name or description.
      operationId: listTemplates
      parameters:
        - name: network
          required: false
          in: query
          description: >-
            Comma-separated list of network slugs to filter by (e.g. `eth,sol`).
            Selects rule types that have a template on any of these networks;
            the returned group still lists all networks the rule supports.
          schema:
            example: eth,sol
            type: string
        - name: search_string
          required: false
          in: query
          description: >-
            Case-insensitive search string matched against `label` and
            `description`.
          schema:
            example: large transfer
            type: string
        - name: tag
          required: false
          in: query
          description: Comma-separated list of tags to filter by (e.g. `defi,transfer`).
          schema:
            example: defi,transfer
            type: string
        - name: severity
          required: false
          in: query
          description: >-
            Comma-separated list of severity levels to filter by (e.g.
            `low,medium,high`).
          schema:
            type: string
            example: high
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAlertTemplatesResponseDto'
components:
  schemas:
    ListAlertTemplatesResponseDto:
      type: object
      properties:
        groups:
          type: array
          items:
            $ref: '#/components/schemas/TemplateGroupDto'
        meta:
          $ref: '#/components/schemas/AlertTemplateListMetaDto'
      required:
        - groups
        - meta
    TemplateGroupDto:
      type: object
      properties:
        type:
          type: string
          description: Internal rule type identifier used by the alert engine.
          example: SafeMultisigExecution
        label:
          type: string
          description: Short display name.
          example: Safe Multisig Tx Executed
        description:
          type: string
          description: Message shown when the rule fires.
          example: A large transfer was detected on {{network}}
        severity:
          type: string
          description: Risk severity.
          example: high
        tags:
          example:
            - safe
            - multisig
          type: array
          items:
            type: string
        networks:
          example:
            - arb1
            - bnb
            - eth
            - pol
          type: array
          items:
            type: string
        templates:
          type: array
          items:
            $ref: '#/components/schemas/TemplateVariantDto'
      required:
        - type
        - label
        - description
        - severity
        - tags
        - networks
        - templates
    AlertTemplateListMetaDto:
      type: object
      properties:
        networks:
          type: array
          items:
            type: string
      required:
        - networks
    TemplateVariantDto:
      type: object
      properties:
        network:
          type: string
          description: Network slug for this variant.
          example: eth
        template_id:
          type: string
          description: Template id to create a rule / fetch the form for this network.
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
          format: uuid
      required:
        - network
        - template_id
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````