> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dialect.to/llms.txt
> Use this file to discover all available pages before exploring further.

# Get App Subscribers

> Retrieve paginated list of all subscribers for application management with filtering and pagination support



## OpenAPI

````yaml /openapi/alerts.json get /v2/{appId}/subscribers
openapi: 3.1.0
info:
  title: Dialect Alerts V2 API
  description: >-
    Notification infrastructure for real-time alert delivery through multiple
    channels including in-app notifications, email, push notifications, and
    Telegram.
  version: 2.2.0-beta
servers:
  - url: https://alerts-api.dial.to
    description: Dialect Production
  - url: https://alerts.dialectapi.to
    description: Dialect Production
security: []
paths:
  /v2/{appId}/subscribers:
    get:
      tags:
        - Send Alerts
      summary: Get App Subscribers
      description: >-
        Retrieve paginated list of all subscribers for application management
        with filtering and pagination support
      operationId: getAppSubscribers
      parameters:
        - name: appId
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: Application ID
            example: 255d6163-7e25-43e9-a188-c2f8d0980a4a
        - name: offset
          in: query
          schema:
            type: number
            minimum: 0
            default: 0
            description: Pagination offset
            example: 10
        - name: limit
          in: query
          schema:
            type: number
            minimum: 1
            maximum: 1000
            default: 100
            description: Pagination limit
            example: 100
        - name: walletAddress
          in: query
          schema:
            oneOf:
              - type: string
                description: Single wallet address to filter by
                example: 6CxnSjtasq5Tzwb4b93AhLofXtiDvMpQ2vTkWdSZqTH7
              - type: array
                items:
                  type: string
                description: Multiple wallet addresses to filter by
      responses:
        '200':
          description: List of subscribers
          content:
            application/json:
              schema:
                type: object
                properties:
                  subscribers:
                    type: array
                    items:
                      type: object
                      properties:
                        walletAddress:
                          type: string
                          description: User wallet address
                          example: 6CxnSjtasq5Tzwb4b93AhLofXtiDvMpQ2vTkWdSZqTH7
                      required:
                        - walletAddress
                  offset:
                    type: number
                    description: Current pagination offset
                    example: 0
                  limit:
                    type: number
                    description: Current pagination limit
                    example: 100
                  count:
                    type: number
                    description: Total count of subscribers
                    example: 150
                required:
                  - subscribers
                  - offset
                  - limit
                  - count
        '400':
          description: Request validation error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                required:
                  - error
        '401':
          description: Unauthorized
      security:
        - application: []
components:
  securitySchemes:
    application:
      type: apiKey
      description: API key to authorize app-level requests
      name: x-dialect-api-key
      in: header

````