IonQ · Schema

IonQ Job

A quantum circuit job submitted to the IonQ Quantum Cloud API v0.4.

Quantum ComputingTrapped IonQPUARIAForteTempoQuantum CloudCloudHardwarePublic Company

Properties

Name Type Description
id string Server-assigned unique identifier of the job.
type string Discriminates the job-creation payload shape.
name string Human-readable label for the job.
backend string Target IonQ backend identifier.
shots integer Number of shots to execute.
settings object Compilation and execution settings, including error_mitigation.
input object QIS circuit, native-gate circuit, or quantum-function input body.
metadata object Free-form user metadata associated with the job.
status string
session_id string
project_id string
request integer Unix timestamp when the job was created.
start integer Unix timestamp when execution started.
response integer Unix timestamp when results were returned.
View JSON Schema on GitHub

JSON Schema

ionq-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ionq/refs/heads/main/json-schema/ionq-job-schema.json",
  "title": "IonQ Job",
  "description": "A quantum circuit job submitted to the IonQ Quantum Cloud API v0.4.",
  "type": "object",
  "required": ["type", "shots", "backend", "input"],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Server-assigned unique identifier of the job."
    },
    "type": {
      "type": "string",
      "enum": [
        "ionq.circuit.v1",
        "ionq.multi-circuit.v1",
        "qctrl.qaoa.v1",
        "quantum-function.v1"
      ],
      "description": "Discriminates the job-creation payload shape."
    },
    "name": {
      "type": "string",
      "description": "Human-readable label for the job."
    },
    "backend": {
      "type": "string",
      "enum": [
        "simulator",
        "qpu.aria-1",
        "qpu.aria-2",
        "qpu.forte-1",
        "qpu.forte-enterprise-1"
      ],
      "description": "Target IonQ backend identifier."
    },
    "shots": {
      "type": "integer",
      "minimum": 1,
      "description": "Number of shots to execute."
    },
    "settings": {
      "type": "object",
      "description": "Compilation and execution settings, including error_mitigation.",
      "properties": {
        "error_mitigation": {
          "type": "object",
          "properties": {
            "debiasing": { "type": "boolean" }
          }
        }
      }
    },
    "input": {
      "type": "object",
      "description": "QIS circuit, native-gate circuit, or quantum-function input body.",
      "properties": {
        "qubits": { "type": "integer", "minimum": 1 },
        "gateset": { "type": "string", "enum": ["qis", "native"] },
        "circuit": { "type": "array", "items": { "type": "object" } }
      },
      "required": ["qubits", "gateset"]
    },
    "metadata": {
      "type": "object",
      "additionalProperties": { "type": "string" },
      "description": "Free-form user metadata associated with the job."
    },
    "status": {
      "type": "string",
      "enum": [
        "ready",
        "submitted",
        "running",
        "completed",
        "canceled",
        "failed"
      ]
    },
    "session_id": { "type": "string", "format": "uuid" },
    "project_id": { "type": "string", "format": "uuid" },
    "request": { "type": "integer", "description": "Unix timestamp when the job was created." },
    "start": { "type": "integer", "description": "Unix timestamp when execution started." },
    "response": { "type": "integer", "description": "Unix timestamp when results were returned." }
  }
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/ionq-job"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.