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

# List Notifications

> List notification events for the authenticated user.

Returns persisted notification events enriched with per-user read status.
Each notification represents a platform event (e.g., job.completed) with
an `is_read` flag indicating whether the current user has marked it as read.

Ordered by created_at DESC with cursor-based pagination.

Args:
    workflow_id: Filter by workflow ID
    event_types: Comma-separated event types (e.g., "job.completed,job.failed")
    since: Filter events created after this ISO 8601 timestamp
    limit: Max events to return (1-100, default 50)
    cursor: Pagination cursor from previous response
    unread_only: Filter to unread events only for current user



## OpenAPI

````yaml https://platform.unstructuredapp.io/openapi.json get /api/v1/notifications
openapi: 3.1.0
info:
  title: Platform API
  version: 3.1.0
servers:
  - url: https://platform.unstructuredapp.io/
    description: Unstructured Platform API
    x-speakeasy-server-id: platform-api
security: []
paths:
  /api/v1/notifications:
    get:
      tags:
        - notifications
      summary: List Notifications
      description: >-
        List notification events for the authenticated user.


        Returns persisted notification events enriched with per-user read
        status.

        Each notification represents a platform event (e.g., job.completed) with

        an `is_read` flag indicating whether the current user has marked it as
        read.


        Ordered by created_at DESC with cursor-based pagination.


        Args:
            workflow_id: Filter by workflow ID
            event_types: Comma-separated event types (e.g., "job.completed,job.failed")
            since: Filter events created after this ISO 8601 timestamp
            limit: Max events to return (1-100, default 50)
            cursor: Pagination cursor from previous response
            unread_only: Filter to unread events only for current user
      operationId: list_notifications_api_v1_notifications_get
      parameters:
        - name: workflow_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Workflow Id
        - name: event_types
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Event Types
        - name: since
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            title: Since
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
        - name: unread_only
          in: query
          required: false
          schema:
            type: boolean
            default: false
            title: Unread Only
        - name: unstructured-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Unstructured-Api-Key
      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'
components:
  schemas:
    NotificationListResponse:
      properties:
        events:
          items:
            $ref: '#/components/schemas/NotificationResponse'
          type: array
          title: Events
          description: List of notification events
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
          description: Cursor for next page (null if no more)
      type: object
      required:
        - events
      title: NotificationListResponse
      description: Paginated notification list response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    NotificationResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Notification event UUID
        event_type:
          type: string
          title: Event Type
          description: Event type (e.g., job.completed)
        workflow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Workflow Id
          description: Workflow scope (null = account-level)
        payload:
          additionalProperties: true
          type: object
          title: Payload
          description: Event payload data
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Event creation timestamp
        is_read:
          type: boolean
          title: Is Read
          description: Read status for current user
          default: false
      type: object
      required:
        - id
        - event_type
        - payload
        - created_at
      title: NotificationResponse
      description: Single notification event.
    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

````