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

# Get notification statistics

> Get notification statistics for the authenticated user including counts by priority and category



## OpenAPI

````yaml /swagger.json get /v1/apps/{app_id}/notifications/stats
openapi: 3.0.1
info:
  title: Scute API
  version: v1
  description: API for managing users in Scute applications
servers:
  - url: https://{defaultHost}
    variables:
      defaultHost:
        default: api.scute.io
  - url: http://localhost:3333
    description: Development server
security:
  - apiSecret: []
    userAccess: []
paths:
  /v1/apps/{app_id}/notifications/stats:
    parameters:
      - name: app_id
        in: path
        required: true
        description: App ID
        schema:
          type: string
    get:
      tags:
        - Notifications
      summary: Get notification statistics
      description: >-
        Get notification statistics for the authenticated user including counts
        by priority and category
      operationId: getNotificationStats
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  stats:
                    type: object
                    properties:
                      total:
                        type: integer
                        description: Total number of active notifications
                      unread:
                        type: integer
                        description: Number of unread notifications
                      requiring_action:
                        type: integer
                        description: Number of notifications requiring user action
                      by_priority:
                        type: object
                        properties:
                          critical:
                            type: integer
                          high:
                            type: integer
                          medium:
                            type: integer
                          low:
                            type: integer
                      by_category:
                        type: object
                        additionalProperties:
                          type: integer
                        description: Notification counts grouped by category
      security:
        - apiSecret: []
          userAccess: []
components:
  securitySchemes:
    apiSecret:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Secret token
    userAccess:
      type: apiKey
      name: X-Authorization
      in: header
      description: User Access token

````