> ## 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 Notification Summary

> Get quick summary of user's notification status including unread count and last read timestamp for efficient inbox management



## OpenAPI

````yaml /openapi/alerts.json get /v2/history/summary
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/history/summary:
    get:
      tags:
        - Integrate an Inbox
      summary: Get Notification Summary
      description: >-
        Get quick summary of user's notification status including unread count
        and last read timestamp for efficient inbox management
      operationId: getNotificationSummary
      parameters:
        - name: appId
          in: query
          schema:
            type: string
            format: uuid
            description: Application ID
            example: 255d6163-7e25-43e9-a188-c2f8d0980a4a
        - name: X-Dialect-Client-Key
          in: header
          required: true
          schema:
            type: string
            description: Client Key used to uniquely identify the client
            example: dk_gyh2eqzfkc4mhp5eiahnndkz
      responses:
        '200':
          description: Notification summary with unread count and last read status
          content:
            application/json:
              schema:
                type: object
                properties:
                  unreadCount:
                    type: number
                    description: Total number of unread alerts
                    example: 5
                  lastRead:
                    type: object
                    properties:
                      timestamp:
                        type: string
                        format: date-time
                        description: ISO Timestamp
                        example: '2024-02-20T15:30:00.000Z'
                    required:
                      - timestamp
                required:
                  - unreadCount
        '400':
          description: Request validation error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                required:
                  - error
        '403':
          description: Forbidden
        '422':
          description: Constraint validation error
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
      security:
        - subscriber: []
components:
  securitySchemes:
    subscriber:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication for subscriber calls

````