AirOps Files API

Endpoints for managing workspace files.

Operations 1

POST /public_api/workspace_files Upload #

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

airops-files-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: V1 Files API
  version: v1
  description: Endpoints for managing workspace files.
servers:
- url: https://api.airops.com
  variables:
    defaultHost:
      default: api.airops.com
tags:
- name: Files
  description: Endpoints for managing workspace files.
paths:
  /public_api/workspace_files:
    post:
      summary: Upload
      description: ' This endpoint allows you to upload a file to the workspace.

        You can use this endpoint to upload a file and get the id of the file to use as an input in an app. '
      operationId: workspaceFileUpload
      tags:
      - Files
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
              required:
              - file
      responses:
        '200':
          description: File uploaded successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    example: 23
                    description: The id of the file, you can use this id as an app's input
                  created_at:
                    type: string
                    format: date-time
                    example: 2023-06-20 00:49:56.696000+00:00
                  updated_at:
                    type: string
                    format: date-time
                    example: 2023-10-24 11:26:21.820000+00:00
              example:
                id: 23
                created_at: 2023-06-20 00:49:56.696000+00:00
                updated_at: 2023-10-24 11:26:21.820000+00:00
        '401':
          description: Authentication error'
      security:
      - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer