Quadrillion files API

The files API from Quadrillion — 10 operation(s) for files.

Operations 10

POST /v1/kernel/files/list List Files #
POST /v1/kernel/files/read Read File #
POST /v1/kernel/files/write Write File #
POST /v1/kernel/files/mkdir Create Folder #
POST /v1/kernel/files/delete Delete Path #
POST /v1/kernel/files/rename Rename Path #
POST /v1/kernel/files/duplicate Duplicate Path #
POST /v1/kernel/files/check Check Path #
POST /files/upload Upload File #
GET /files/download Download File #

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/quadrillion-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

quadrillion-files-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quadrillion Cloud account Files API
  description: Public cloud API service for cloud-safe backend endpoints
  version: 0.1.0
servers:
- url: https://api.quadrillion.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: files
paths:
  /v1/kernel/files/list:
    post:
      tags:
      - files
      summary: List Files
      description: List directory contents on the user's NFS filesystem.
      operationId: list_files_v1_kernel_files_list_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/kernel/files/read:
    post:
      tags:
      - files
      summary: Read File
      description: Read a file from the user's NFS filesystem.
      operationId: read_file_v1_kernel_files_read_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/kernel/files/write:
    post:
      tags:
      - files
      summary: Write File
      description: Write/save a file on the user's NFS filesystem.
      operationId: write_file_v1_kernel_files_write_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/kernel/files/mkdir:
    post:
      tags:
      - files
      summary: Create Folder
      description: Create a folder on the user's NFS filesystem.
      operationId: create_folder_v1_kernel_files_mkdir_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/kernel/files/delete:
    post:
      tags:
      - files
      summary: Delete Path
      description: Delete a file or folder on the user's NFS filesystem.
      operationId: delete_path_v1_kernel_files_delete_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/kernel/files/rename:
    post:
      tags:
      - files
      summary: Rename Path
      description: Rename/move a file or folder on the user's NFS filesystem.
      operationId: rename_path_v1_kernel_files_rename_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/kernel/files/duplicate:
    post:
      tags:
      - files
      summary: Duplicate Path
      description: Duplicate a file or folder on the user's NFS filesystem.
      operationId: duplicate_path_v1_kernel_files_duplicate_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /v1/kernel/files/check:
    post:
      tags:
      - files
      summary: Check Path
      description: Check if a path exists on the user's NFS filesystem.
      operationId: check_path_v1_kernel_files_check_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /files/upload:
    post:
      tags:
      - files
      summary: Upload File
      description: 'Upload a file into the workspace at ``dest_dir/<filename>``.


        Name conflicts are auto-renamed (``name (1).ext``) unless

        ``overwrite`` is set; the final path is returned either way.'
      operationId: upload_file_files_upload_post
      requestBody:
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_upload_file_files_upload_post'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /files/download:
    get:
      tags:
      - files
      summary: Download File
      description: Download a single workspace file as an attachment.
      operationId: download_file_files_download_get
      parameters:
      - name: path
        in: query
        required: true
        schema:
          type: string
          title: Path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Body_upload_file_files_upload_post:
      properties:
        file:
          type: string
          format: binary
          title: File
        dest_dir:
          type: string
          title: Dest Dir
          default: ''
        overwrite:
          type: boolean
          title: Overwrite
          default: false
      type: object
      required:
      - file
      title: Body_upload_file_files_upload_post