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

# List Notifications

> Return the current user's notifications, most recent first.

Supports pagination via ``limit`` / ``offset`` and an optional
``unread_only`` filter for showing only unread notifications.



## OpenAPI

````yaml /api-reference/openapi.json get /api/notifications
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:
    get:
      tags:
        - notifications
      summary: List Notifications
      description: |-
        Return the current user's notifications, most recent first.

        Supports pagination via ``limit`` / ``offset`` and an optional
        ``unread_only`` filter for showing only unread notifications.
      operationId: list_notifications_api_notifications_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
            title: Offset
        - name: unread_only
          in: query
          required: false
          schema:
            type: boolean
            default: false
            title: Unread Only
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    NotificationListResponse:
      properties:
        notifications:
          items:
            $ref: '#/components/schemas/NotificationResponse'
          type: array
          title: Notifications
      type: object
      required:
        - notifications
      title: NotificationListResponse
      description: Paginated list of notifications.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    NotificationResponse:
      properties:
        id:
          type: integer
          title: Id
        title:
          type: string
          title: Title
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        type:
          type: string
          title: Type
        link:
          anyOf:
            - type: string
            - type: 'null'
          title: Link
        metadata:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Metadata
        is_read:
          type: boolean
          title: Is Read
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
        - title
        - type
        - is_read
      title: NotificationResponse
      description: A single notification as returned by the API.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Notification Stream](/api-reference/notifications/notification-stream.md)
- [Receive Notification](/api-reference/webhooks/receive-notification.md)
- [Mark As Read](/api-reference/notifications/mark-as-read.md)
- [Mark All As Read](/api-reference/notifications/mark-all-as-read.md)
- [Unread Count](/api-reference/notifications/unread-count.md)
