SewerAI Notifications API

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

Operations 8

GET /notifications/ Notifications list #
POST /notifications/ Notifications create #
POST /notifications/mark-all-read/ Notifications mark all read #
GET /notifications/reference/ Notifications reference #
GET /notifications/{sid}/ Notifications read #
PUT /notifications/{sid}/ Notifications update #
PATCH /notifications/{sid}/ Notifications partial update #
DELETE /notifications/{sid}/ Notifications delete #

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/sewerai-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

sewerai-notifications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Snippets Notifications API
  description: Test description
  termsOfService: https://www.google.com/policies/terms/
  contact:
    email: contact@snippets.local
  license:
    name: BSD License
  version: v1
servers:
- url: https://574ea6n6tdopt2qigvs3hjzoha0nhhvj.lambda-url.us-west-2.on.aws/
security:
- Basic: []
tags:
- name: Notifications
paths:
  /notifications/:
    parameters: []
    get:
      operationId: notifications_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Notification'
      tags:
      - Notifications
      summary: Notifications list
      x-summary-source: derived
    post:
      operationId: notifications_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
      tags:
      - Notifications
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Notification'
        required: true
      summary: Notifications create
      x-summary-source: derived
  /notifications/mark-all-read/:
    parameters: []
    post:
      operationId: notifications_mark_all_read
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
      tags:
      - Notifications
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Notification'
        required: true
      summary: Notifications mark all read
      x-summary-source: derived
  /notifications/reference/:
    parameters: []
    get:
      operationId: notifications_reference
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Notification'
      tags:
      - Notifications
      summary: Notifications reference
      x-summary-source: derived
  /notifications/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: notifications_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
      tags:
      - Notifications
      summary: Notifications read
      x-summary-source: derived
    put:
      operationId: notifications_update
      description: Ensure that only the _read_ field is updatable.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
      tags:
      - Notifications
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Notification'
        required: true
      summary: Notifications update
      x-summary-source: derived
    patch:
      operationId: notifications_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
      tags:
      - Notifications
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Notification'
        required: true
      summary: Notifications partial update
      x-summary-source: derived
    delete:
      operationId: notifications_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - Notifications
      summary: Notifications delete
      x-summary-source: derived
components:
  schemas:
    Notification:
      required:
      - content
      type: object
      properties:
        action_url:
          title: Action url
          type: string
          readOnly: true
        category:
          title: Category
          type: string
          readOnly: true
        content:
          title: Content
          type: string
          enum:
          - export_ready
          - digital_submittal_sent
          - digital_submittal_accepted
          - digital_submittal_received
          - digital_submittal_deleted
          - review_task_created
          - review_task_comment_created
          - review_task_comment_user_tagged
          - user_invited_to_account_or_project
        created:
          title: Created
          type: string
          format: date-time
          readOnly: true
        full_content:
          title: Full content
          type: string
          readOnly: true
        meta:
          title: Meta
          type: object
        read:
          title: Read
          type: boolean
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
        target_user:
          title: Target user
          type: string
          readOnly: true
          minLength: 1
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
  securitySchemes:
    Basic:
      type: http
      scheme: basic