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

# Unread Count

> Return the number of unread notifications for badge display.



## OpenAPI

````yaml /api-reference/openapi.json get /api/notifications/unread-count
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/notifications/unread-count:
    get:
      tags:
        - notifications
      summary: Unread Count
      description: Return the number of unread notifications for badge display.
      operationId: unread_count_api_notifications_unread_count_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnreadCountResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    UnreadCountResponse:
      properties:
        count:
          type: integer
          title: Count
      type: object
      required:
        - count
      title: UnreadCountResponse
      description: Badge count for unread notifications.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [List Notifications](/api-reference/notifications/list-notifications.md)
- [BI module statistics](/api-reference/bi-stats/bi-module-statistics.md)
- [Create Session](/api-reference/create-session.md)
- [Create Session With Id](/api-reference/create-session-with-id.md)
- [Get Session](/api-reference/get-session.md)
