Quadrillion terminal API

The terminal API from Quadrillion — 7 operation(s) for terminal.

Operations 7

POST /api/terminal/create Create Terminal #
POST /api/terminal/{terminal_id}/write Write Terminal #
GET /api/terminal/{terminal_id}/read Read Terminal #
POST /api/terminal/{terminal_id}/resize Resize Terminal #
DELETE /api/terminal/{terminal_id} Delete Terminal #
GET /api/terminal/python-env Get Python Env #
POST /api/terminal/{terminal_id}/qualia Qualia Command #

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-terminal-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-terminal-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quadrillion Cloud account Terminal 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: terminal
paths:
  /api/terminal/create:
    post:
      tags:
      - terminal
      summary: Create Terminal
      description: Create a new terminal.
      operationId: create_terminal_api_terminal_create_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TerminalCreateRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/terminal/{terminal_id}/write:
    post:
      tags:
      - terminal
      summary: Write Terminal
      description: Write data to terminal stdin.
      operationId: write_terminal_api_terminal__terminal_id__write_post
      parameters:
      - name: terminal_id
        in: path
        required: true
        schema:
          type: string
          title: Terminal Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TerminalWriteRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/terminal/{terminal_id}/read:
    get:
      tags:
      - terminal
      summary: Read Terminal
      description: Read data from terminal stdout (polling fallback).
      operationId: read_terminal_api_terminal__terminal_id__read_get
      parameters:
      - name: terminal_id
        in: path
        required: true
        schema:
          type: string
          title: Terminal Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/terminal/{terminal_id}/resize:
    post:
      tags:
      - terminal
      summary: Resize Terminal
      description: Resize terminal.
      operationId: resize_terminal_api_terminal__terminal_id__resize_post
      parameters:
      - name: terminal_id
        in: path
        required: true
        schema:
          type: string
          title: Terminal Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TerminalResizeRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/terminal/{terminal_id}:
    delete:
      tags:
      - terminal
      summary: Delete Terminal
      description: Kill terminal process.
      operationId: delete_terminal_api_terminal__terminal_id__delete
      parameters:
      - name: terminal_id
        in: path
        required: true
        schema:
          type: string
          title: Terminal Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/terminal/python-env:
    get:
      tags:
      - terminal
      summary: Get Python Env
      description: Get Python environment info for terminal.
      operationId: get_python_env_api_terminal_python_env_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /api/terminal/{terminal_id}/qualia:
    post:
      tags:
      - terminal
      summary: Qualia Command
      description: Handle qualia command to open a file in Qualia.
      operationId: qualia_command_api_terminal__terminal_id__qualia_post
      parameters:
      - name: terminal_id
        in: path
        required: true
        schema:
          type: string
          title: Terminal Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QualiaCommandRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TerminalWriteRequest:
      properties:
        data:
          type: string
          title: Data
      type: object
      required:
      - data
      title: TerminalWriteRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TerminalResizeRequest:
      properties:
        cols:
          type: integer
          title: Cols
        rows:
          type: integer
          title: Rows
      type: object
      required:
      - cols
      - rows
      title: TerminalResizeRequest
    TerminalCreateRequest:
      properties:
        shell:
          anyOf:
          - type: string
          - type: 'null'
          title: Shell
        cols:
          type: integer
          title: Cols
          default: 80
        rows:
          type: integer
          title: Rows
          default: 24
        cwd:
          anyOf:
          - type: string
          - type: 'null'
          title: Cwd
      type: object
      title: TerminalCreateRequest
    QualiaCommandRequest:
      properties:
        file_path:
          type: string
          title: File Path
      type: object
      required:
      - file_path
      title: QualiaCommandRequest
    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