Google Quantum AI Calibrations API

Periodic device performance snapshots.

Operations 2

GET /v1alpha1/{parent}/calibrations List Quantum Calibrations #
GET /v1alpha1/{name}/calibration Get Quantum Calibration #

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/google-quantum-ai-calibrations-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

google-quantum-ai-calibrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Quantum Engine Calibrations API
  version: v1alpha1
  description: 'REST surface of the Google Quantum Engine service (`quantum.googleapis.com`,

    `google.cloud.quantum.v1alpha1.QuantumEngineService`). The Quantum Engine

    accepts hardware-compatible quantum circuits as **programs**, executes them

    as **jobs** on Google''s superconducting **processors** (Willow- and

    Sycamore-class), manages **reservations** of processor time, and exposes

    processor **calibration** snapshots. The canonical client is the

    `cirq-google` Python package (`cirq_google.Engine`).


    Access is restricted: callers must use a Google Cloud project with the

    Quantum Engine API enabled, be on the approved-user list, and authenticate

    using Application Default Credentials (OAuth 2.0 with the

    `https://www.googleapis.com/auth/cloud-platform` scope).

    '
  contact:
    name: Cirq Maintainers
    email: cirq-maintainers@googlegroups.com
    url: https://quantumai.google/cirq/google/engine
  license:
    name: Google APIs Terms of Service
    url: https://developers.google.com/terms
servers:
- url: https://quantum.googleapis.com
  description: Production Quantum Engine endpoint
security:
- googleOAuth:
  - https://www.googleapis.com/auth/cloud-platform
tags:
- name: Calibrations
  description: Periodic device performance snapshots.
paths:
  /v1alpha1/{parent}/calibrations:
    parameters:
    - $ref: '#/components/parameters/ProcessorParent'
    get:
      tags:
      - Calibrations
      operationId: ListQuantumCalibrations
      summary: List Quantum Calibrations
      description: List historical calibration snapshots for a processor.
      parameters:
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/PageToken'
      - $ref: '#/components/parameters/Filter'
      responses:
        '200':
          description: A page of calibrations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListQuantumCalibrationsResponse'
  /v1alpha1/{name}/calibration:
    parameters:
    - $ref: '#/components/parameters/CalibrationName'
    get:
      tags:
      - Calibrations
      operationId: GetQuantumCalibration
      summary: Get Quantum Calibration
      description: Retrieve a single calibration snapshot for a processor.
      responses:
        '200':
          description: The requested calibration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuantumCalibration'
components:
  schemas:
    QuantumCalibration:
      type: object
      description: A calibration snapshot for a processor.
      properties:
        name:
          type: string
        timestamp:
          type: string
          format: date-time
        data:
          type: object
          description: Serialised `Metrics` protobuf with per-gate and per-qubit calibration metrics.
    ListQuantumCalibrationsResponse:
      type: object
      properties:
        calibrations:
          type: array
          items:
            $ref: '#/components/schemas/QuantumCalibration'
        nextPageToken:
          type: string
  parameters:
    Filter:
      name: filter
      in: query
      description: AIP-160 filter expression (e.g., `labels.team = quantum`, `executionStatus.state = SUCCESS`).
      schema:
        type: string
    ProcessorParent:
      name: parent
      in: path
      required: true
      description: The parent processor resource, formatted as `projects/{project_id}/processors/{processor_id}`.
      schema:
        type: string
        pattern: ^projects/[^/]+/processors/[^/]+$
    PageToken:
      name: pageToken
      in: query
      description: Continuation token from a previous list response.
      schema:
        type: string
    CalibrationName:
      name: name
      in: path
      required: true
      description: The calibration resource name.
      schema:
        type: string
    PageSize:
      name: pageSize
      in: query
      description: Maximum number of items to return in a page.
      schema:
        type: integer
        format: int32
        minimum: 1
        maximum: 1000
  securitySchemes:
    googleOAuth:
      type: oauth2
      description: OAuth 2.0 via Google Cloud Application Default Credentials.
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.google.com/o/oauth2/auth
          tokenUrl: https://oauth2.googleapis.com/token
          scopes:
            https://www.googleapis.com/auth/cloud-platform: Read/write access to Google Cloud resources, including Quantum Engine.