Quadrillion compute API

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

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-compute-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

quadrillion-compute-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Quadrillion Cloud account compute API
  description: Public cloud API service for cloud-safe backend endpoints
  version: 0.1.0
tags:
- name: compute
paths:
  /api/compute/capabilities:
    get:
      tags:
      - compute
      summary: List Compute Capabilities
      description: Return parsed partition capabilities loaded in current runtime.
      operationId: list_compute_capabilities_api_compute_capabilities_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComputeCapabilitiesResponse'
  /api/compute/resolve:
    post:
      tags:
      - compute
      summary: Resolve Compute Resources
      description: Resolve compute traits to the best-fit partition.
      operationId: resolve_compute_resources_api_compute_resolve_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ComputeResolveRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComputeResolveResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ComputeCapabilitiesResponse:
      properties:
        env_present:
          type: boolean
          title: Env Present
        capabilities:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Capabilities
        capabilities_version:
          anyOf:
          - type: string
          - type: 'null'
          title: Capabilities Version
      type: object
      required:
      - env_present
      - capabilities
      title: ComputeCapabilitiesResponse
      description: Response model for effective partition capabilities.
    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
    ComputeResolveResponse:
      properties:
        partition:
          type: string
          title: Partition
        decision:
          $ref: '#/components/schemas/ComputeResolveDecision'
        capabilities_version:
          anyOf:
          - type: string
          - type: 'null'
          title: Capabilities Version
        warnings:
          items:
            type: string
          type: array
          title: Warnings
      type: object
      required:
      - partition
      - decision
      title: ComputeResolveResponse
      description: Response model for compute partition resolution.
    GpuType:
      type: string
      enum:
      - a10g
      - l4
      - a100
      - h100
      title: GpuType
      description: Supported GPU families for compute requests.
    ComputeTraits:
      properties:
        gpu_type:
          anyOf:
          - $ref: '#/components/schemas/GpuType'
          - type: 'null'
        gpu_count:
          anyOf:
          - type: integer
          - type: 'null'
          title: Gpu Count
        cpu_count:
          anyOf:
          - type: integer
          - type: 'null'
          title: Cpu Count
        memory_gb:
          anyOf:
          - type: integer
          - type: 'null'
          title: Memory Gb
      additionalProperties: false
      type: object
      title: ComputeTraits
      description: 'Abstract resource requirements for a task.


        All fields are optional; omitted fields impose no constraint.'
    ComputeResolveDecision:
      properties:
        policy:
          type: string
          title: Policy
        matched_capability:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Matched Capability
        fallback_used:
          type: boolean
          title: Fallback Used
          default: false
      type: object
      required:
      - policy
      title: ComputeResolveDecision
      description: Decision metadata for partition resolution.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ComputeResolveRequest:
      properties:
        compute_traits:
          anyOf:
          - $ref: '#/components/schemas/ComputeTraits'
          - type: 'null'
        count:
          type: integer
          minimum: 1.0
          title: Count
          default: 1
        mode:
          type: string
          enum:
          - single
          - batch
          title: Mode
          default: single
      additionalProperties: false
      type: object
      title: ComputeResolveRequest
      description: Request model for compute partition resolution.