Quadrillion execution API

The execution API from Quadrillion — 2 operation(s) for execution.

Operations 2

GET /execute/{execution_id}/replay Replay Execution Output #
POST /execute Execute #

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-execution-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-execution-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quadrillion Cloud account Execution 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: execution
paths:
  /execute/{execution_id}/replay:
    get:
      tags:
      - execution
      summary: Replay Execution Output
      description: 'Return buffered ``execution_output`` chunks for a live cell run.


        Used by the frontend on reconnect/reload to recover any chunks it

        missed while disconnected from the notebook socket room. Authorized

        by the same notebook-lock check as ``/execute``: the caller must

        own the lock on the handle''s notebook.


        ``after_seq`` lets clients page incrementally — pass the highest

        ``seq`` they''ve already rendered (live or replayed) and only newer

        chunks are returned. Returns ``404`` when the per-cell replay record

        has been pruned; the cell''s final ``cell.outputs`` is then the source

        of truth.'
      operationId: replay_execution_output_execute__execution_id__replay_get
      parameters:
      - name: execution_id
        in: path
        required: true
        schema:
          type: string
          title: Execution Id
      - name: after_seq
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: After Seq
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /execute:
    post:
      tags:
      - execution
      summary: Execute
      operationId: execute_execute_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/_ExecuteRequest'
        required: true
      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
    _ExecuteRequest:
      properties:
        notebook_id:
          type: string
          title: Notebook Id
        notebook_path:
          type: string
          title: Notebook Path
        execution_id:
          type: string
          title: Execution Id
          default: default
        cell_id:
          type: string
          title: Cell Id
      type: object
      required:
      - notebook_id
      - notebook_path
      - cell_id
      title: _ExecuteRequest