SewerAI Files API

The files API from SewerAI — 5 operation(s) for files.

Operations 5

GET /files/ #
GET /files/FileOptions/ #
GET /files/{sid}/ #
POST /files/{sid}/Import/ #
POST /files/{sid}/Read/ #

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-files-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-files-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Snippets Files 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: files
paths:
  /files/:
    parameters: []
    get:
      operationId: files_list
      description: An endpoint for Files.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/File'
      tags:
      - files
  /files/FileOptions/:
    parameters: []
    get:
      operationId: files_FileOptions
      description: An endpoint for Files.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/File'
      tags:
      - files
  /files/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: files_read
      description: An endpoint for Files.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/File'
      tags:
      - files
  /files/{sid}/Import/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: files_Import
      description: An endpoint for Files.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/File'
      tags:
      - files
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/File'
        required: true
  /files/{sid}/Read/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: files_Read
      description: An endpoint for Files.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/File'
      tags:
      - files
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/File'
        required: true
components:
  schemas:
    File:
      required:
      - meta
      - presigned_upload
      type: object
      properties:
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
        account:
          title: Account
          type: string
          format: uri
          readOnly: true
        origin_path:
          title: Origin path
          type: string
          readOnly: true
          minLength: 1
        name:
          title: Name
          type: string
          readOnly: true
          minLength: 1
        kind:
          title: Kind
          type: integer
          readOnly: true
        location:
          title: Location
          type:
          - string
          - 'null'
        size:
          title: Size
          type: string
          readOnly: true
        exists:
          title: Exists
          type: string
          readOnly: true
        upload_location:
          title: Upload location
          type: string
          readOnly: true
          minLength: 1
        meta:
          title: Meta
          type: object
        dropbox_meta:
          title: Dropbox meta
          type:
          - object
          - 'null'
        presigned_upload:
          title: Presigned upload
          type: object
  securitySchemes:
    Basic:
      type: http
      scheme: basic