SewerAI Notifications API

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

Operations 8

GET /notifications/ #
POST /notifications/ #
POST /notifications/mark-all-read/ #
GET /notifications/reference/ #
GET /notifications/{sid}/ #
PUT /notifications/{sid}/ #
PATCH /notifications/{sid}/ #
DELETE /notifications/{sid}/ #

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 email required.

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
    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
  /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
  /notifications/reference/:
    parameters: []
    get:
      operationId: notifications_reference
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Notification'
      tags:
      - notifications
  /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
    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
    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
    delete:
      operationId: notifications_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - notifications
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