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

# Get Unread Count

> Fetches the count of unread notifications for the authenticated user.



## OpenAPI

````yaml GET /notifications/count
openapi: 3.0.1
info:
  title: Notification API
  version: 1.0.0
  description: API for fetching user notifications
servers: []
security: []
paths:
  /notifications/count:
    get:
      summary: Get Unread Notifications Count
      description: Fetches the count of unread notifications for the authenticated user.
      parameters:
        - $ref: '#/components/parameters/X-API-KEY'
      responses:
        '200':
          description: The count of unread notifications
          content:
            application/json:
              schema:
                type: integer
                description: Number of unread notifications
        '401':
          description: Unauthorized access
        '500':
          description: Internal server error
      security:
        - bearerAuth: []
components:
  parameters:
    X-API-KEY:
      name: X-API-KEY
      description: API key required for authentication
      in: header
      required: true
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````