> ## 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 rule templates available to the workspace

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



## OpenAPI

````yaml /api-reference/platform-api.json get /v1/risk/alert-templates
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.13
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
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:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````