IonQ · Example Payload

Ionq Create Job Example

Quantum ComputingTrapped IonQPUAriaForteTempoQuantum CloudCloudHardwarePublic Company

Ionq Create Job Example is an example object payload from IonQ, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

typenamemetadatashotsbackendsettingsinput

Example Payload

Raw ↑
{
  "type": "ionq.circuit.v1",
  "name": "Bell state on Forte",
  "metadata": {
    "experiment": "bell-state",
    "owner": "kinlane"
  },
  "shots": 1024,
  "backend": "qpu.forte-1",
  "settings": {
    "error_mitigation": {
      "debiasing": true
    }
  },
  "input": {
    "qubits": 2,
    "gateset": "qis",
    "circuit": [
      { "gate": "h", "target": 0 },
      { "gate": "cnot", "control": 0, "target": 1 }
    ]
  }
}