SewerAI Annotations API

The annotations API from SewerAI — 2 operation(s) for annotations.

Operations 6

GET /annotations/ #
POST /annotations/ #
GET /annotations/{sid}/ #
PUT /annotations/{sid}/ #
PATCH /annotations/{sid}/ #
DELETE /annotations/{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-annotations-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-annotations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Snippets Annotations 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: annotations
paths:
  /annotations/:
    parameters: []
    get:
      operationId: annotations_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AIAnnotation'
      tags:
      - annotations
    post:
      operationId: annotations_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIAnnotation'
      tags:
      - annotations
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AIAnnotation'
        required: true
  /annotations/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: annotations_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIAnnotation'
      tags:
      - annotations
    put:
      operationId: annotations_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIAnnotation'
      tags:
      - annotations
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AIAnnotation'
        required: true
    patch:
      operationId: annotations_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIAnnotation'
      tags:
      - annotations
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AIAnnotation'
        required: true
    delete:
      operationId: annotations_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - annotations
components:
  schemas:
    AIAnnotation:
      required:
      - frame
      - video_sid
      - code
      type: object
      properties:
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
        frame:
          title: Frame
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        video_sid:
          title: Video sid
          type: string
          minLength: 1
        code:
          title: Code
          type: string
          minLength: 1
        box:
          type:
          - array
          - 'null'
          items:
            title: Box
            type: integer
            maximum: 2147483647
            minimum: -2147483648
          maxItems: 4
        frame_width:
          title: Frame width
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: -2147483648
        frame_height:
          title: Frame height
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: -2147483648
        reviewed_by_user:
          title: Reviewed by user
          type: string
          readOnly: true
        created:
          title: Created
          type: string
          format: date-time
          readOnly: true
        created_by:
          title: Created by
          type: integer
          readOnly: true
        updated:
          title: Updated
          type: string
          format: date-time
          readOnly: true
        updated_by:
          title: Updated by
          type: integer
          readOnly: true
  securitySchemes:
    Basic:
      type: http
      scheme: basic