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

> Retrieve all available alert topics for a specific application with detailed topic information including names, descriptions, and slugs for topic-based alert categorization



## OpenAPI

````yaml /openapi/alerts.json get /v2/{appId}/topics
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}/topics:
    get:
      tags:
        - Send Alerts
      summary: Get App Topics
      description: >-
        Retrieve all available alert topics for a specific application with
        detailed topic information including names, descriptions, and slugs for
        topic-based alert categorization
      operationId: getAppTopics
      parameters:
        - name: appId
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: Application ID
            example: 255d6163-7e25-43e9-a188-c2f8d0980a4a
      responses:
        '200':
          description: List of topics
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Unique identifier for the topic
                          example: 123e4567-e89b-12d3-a456-426614174000
                        name:
                          type: string
                          description: Name of the topic
                          example: Price Alerts
                        description:
                          type: string
                          description: Description of the topic
                          example: >-
                            Receive alerts when prices drop below a certain
                            threshold
                        slug:
                          type: string
                          description: Human-readable slug of the topic
                          example: price-alerts
                      required:
                        - id
                        - name
                        - slug
                    description: List of alert topics for the app
                required:
                  - items
        '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

````