> ## 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 multisig alert packs available to the workspace

> Browse the multisig alert packs (e.g. `squads`, `safe`) your workspace can create, with the networks each pack covers and how many member templates it has.



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/risk/alert-packs
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.22
  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:
  /v2/risk/alert-packs:
    get:
      tags:
        - Alert Packs
      summary: List multisig alert packs available to the workspace
      description: >-
        Browse the multisig alert packs (e.g. `squads`, `safe`) your workspace
        can create, with the networks each pack covers and how many member
        templates it has.
      operationId: listPacks
      parameters:
        - name: network
          required: false
          in: query
          description: >-
            Preferred network for rule types registered on several networks: the
            pack then lists only the template on this network for each such
            type. Types with no template on this network keep all their
            templates, so the response always covers every required type.
          schema:
            maxLength: 64
            example: solana
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAlertPacksResponseDto'
components:
  schemas:
    ListAlertPacksResponseDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/AlertPackSummaryDto'
      required:
        - items
    AlertPackSummaryDto:
      type: object
      properties:
        pack_type:
          type: string
          description: >-
            Pack type identifier, as accepted by `POST
            /v1/risk/alert-rules/pack`.
          example: squads
        networks:
          description: >-
            Networks covered by the returned member templates. Narrowed by the
            `network` query parameter where a variant exists there.
          example:
            - solana
          type: array
          items:
            type: string
        template_count:
          type: number
          description: Number of member templates in this pack.
          example: 8
        required_count:
          type: number
          description: >-
            Number of distinct rule types that must be included when creating
            the pack. A rule type registered on several networks counts once.
          example: 7
      required:
        - pack_type
        - networks
        - template_count
        - required_count
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````