Unstructured notifications API

The notifications API from Unstructured — 4 operation(s) for notifications.

Operations 4

GET /api/v1/notifications List Notifications #
GET /api/v1/notifications/unread-count Get Unread Count #
POST /api/v1/notifications/mark-read Mark Read #
GET /api/v1/notifications/{notification_id} Get Notification #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/unstructured-notifications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

unstructured-notifications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Platform Notifications API
  version: 3.1.0
servers:
- url: https://platform.unstructuredapp.io/
  description: Unstructured Platform API
  x-speakeasy-server-id: platform-api
tags:
- name: notifications
paths:
  /api/v1/notifications:
    get:
      tags:
      - notifications
      summary: List Notifications
      description: "List notification events for the authenticated user.\n\nReturns persisted notification events enriched with per-user read status.\nEach notification represents a platform event (e.g., job.completed) with\nan `is_read` flag indicating whether the current user has marked it as read.\n\nOrdered by created_at DESC with cursor-based pagination.\n\nArgs:\n    workflow_id: Filter by workflow ID\n    event_types: Comma-separated event types (e.g., \"job.completed,job.failed\")\n    since: Filter events created after this ISO 8601 timestamp\n    limit: Max events to return (1-100, default 50)\n    cursor: Pagination cursor from previous response\n    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'
  /api/v1/notifications/unread-count:
    get:
      tags:
      - notifications
      summary: Get Unread Count
      description: "Get count of unread notification events for current user.\n\nTarget performance: <50ms p95 (SC-014).\n\nArgs:\n    workflow_id: Optional workflow filter"
      operationId: get_unread_count_api_v1_notifications_unread_count_get
      parameters:
      - name: workflow_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Workflow Id
      - 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/UnreadCountResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/notifications/mark-read:
    post:
      tags:
      - notifications
      summary: Mark Read
      description: 'Mark notification events as read for current user.


        Provide EITHER notification_ids (list of up to 100 UUIDs) OR before (timestamp).

        workflow_id filter is only valid with ''before'' mode.


        Target performance: batch of 100 < 100ms (SC-015).'
      operationId: mark_read_api_v1_notifications_mark_read_post
      parameters:
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarkReadRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarkReadResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/notifications/{notification_id}:
    get:
      tags:
      - notifications
      summary: Get Notification
      description: Get a single notification event by ID.
      operationId: get_notification_api_v1_notifications__notification_id__get
      parameters:
      - name: notification_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Notification Id
      - 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/NotificationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MarkReadResponse:
      properties:
        marked_count:
          type: integer
          title: Marked Count
          description: Number of events newly marked as read
      type: object
      required:
      - marked_count
      title: MarkReadResponse
      description: Response for mark-as-read operation.
    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
    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.
    MarkReadRequest:
      properties:
        notification_ids:
          anyOf:
          - items:
              type: string
              format: uuid
            type: array
            maxItems: 100
          - type: 'null'
          title: Notification Ids
          description: Specific notification IDs to mark as read (max 100)
        before:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Before
          description: Mark all notifications created before this ISO 8601 timestamp as read
        mark_all:
          type: boolean
          title: Mark All
          description: Mark all unread notifications as read (can combine with workflow_id)
          default: false
        workflow_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Workflow Id
          description: Filter by workflow (only valid with 'before' or 'mark_all')
      type: object
      title: MarkReadRequest
      description: 'Request to mark notifications as read.


        Provide ONE of: notification_ids, before, or mark_all (mutually exclusive).

        workflow_id is valid with ''before'' or ''mark_all''.'
    UnreadCountResponse:
      properties:
        unread_count:
          type: integer
          title: Unread Count
          description: Number of unread events
      type: object
      required:
      - unread_count
      title: UnreadCountResponse
      description: Response for unread count query.