SewerAI Groups API

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

Operations 6

GET /groups/ #
POST /groups/ #
GET /groups/{id}/ #
PUT /groups/{id}/ #
PATCH /groups/{id}/ #
DELETE /groups/{id}/ #

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-groups-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-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Snippets Groups 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: groups
paths:
  /groups/:
    parameters: []
    get:
      operationId: groups_list
      description: API endpoint that allows groups to be viewed or edited.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Group'
      tags:
      - groups
    post:
      operationId: groups_create
      description: API endpoint that allows groups to be viewed or edited.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Group'
      tags:
      - groups
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Group'
        required: true
  /groups/{id}/:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this group.
      required: true
      schema:
        type: integer
    get:
      operationId: groups_read
      description: API endpoint that allows groups to be viewed or edited.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Group'
      tags:
      - groups
    put:
      operationId: groups_update
      description: API endpoint that allows groups to be viewed or edited.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Group'
      tags:
      - groups
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Group'
        required: true
    patch:
      operationId: groups_partial_update
      description: API endpoint that allows groups to be viewed or edited.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Group'
      tags:
      - groups
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Group'
        required: true
    delete:
      operationId: groups_delete
      description: API endpoint that allows groups to be viewed or edited.
      responses:
        '204':
          description: ''
      tags:
      - groups
components:
  schemas:
    Group:
      required:
      - name
      type: object
      properties:
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        name:
          title: Name
          type: string
          maxLength: 150
          minLength: 1
  securitySchemes:
    Basic:
      type: http
      scheme: basic