Qiskit IonQ Provider
Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.
This project contains a provider that allows access to IonQ ion trap quantum systems.
The example python notebook (in /example) should help you understand basic usage.
API Access
The IonQ Provider uses IonQ's REST API, and using the provider requires an API access token from IonQ. If you would like to use IonQ as a Qiskit provider, please visit https://cloud.ionq.com/settings/keys to generate an IonQ API key.
Installation
You can install the provider using pip:
pip install qiskit-ionq
Provider Setup
To instantiate the provider, make sure you have an access token then create a provider:
from qiskit_ionq import IonQProvider
provider = IonQProvider("token")
Credential Environment Variables
Alternatively, the IonQ Provider can discover your access token from environment variables. It checks QISKIT_IONQ_API_TOKEN, then IONQ_API_KEY, then IONQ_API_TOKEN:
export IONQ_API_KEY="token"
Then invoke instantiate the provider without any arguments:
from qiskit_ionq import IonQProvider, ErrorMitigation
provider = IonQProvider()
Once the provider has been instantiated, it may be used to access supported backends:
# Show all current supported backends:
print(provider.backends())
# Get IonQ's simulator backend:
simulator_backend = provider.get_backend("ionq_simulator")
Submitting a Circuit
Once a backend has been specified, it may be used to submit circuits. For example, running a Bell State:
from qiskit import QuantumCircuit
# Create a basic Bell State circuit:
qc = QuantumCircuit(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure([0, 1], [0, 1])
# Run the circuit on IonQ's platform with error mitigation:
job = simulator_backend.run(qc, error_mitigation=ErrorMitigation.DEBIASING)
# Print the results.
print(job.result().get_counts())
# Get results with a different aggregation method when debiasing
# is applied as an error mitigation strategy
print(job.result(sharpen=True).get_counts())
# The simulator specifically provides the ideal probabilities and creates
# counts by sampling from these probabilities. The raw probabilities are also accessible:
print(job.result().get_probabilities())
Compilation as a service (dry_run)
IonQ Cloud can compile a circuit and return the result without executing it on a QPU. This is useful for inspecting the post-compilation circuit, estimating gate counts, or validating native-gate output before paying for shots.
Set dry_run=True on backend.run(...) and then read the compiled circuit back via job.compiled_circuit(...):
backend = provider.get_backend("ionq_qpu.forte-1")
job = backend.run(qc, dry_run=True, job_settings={"compilation": {"service_version": "v0.4"}})
job.wait_for_final_state()
native = job.compiled_circuit(lang="native") # IonQ-native gate JSON (dict)
The compiled circuit is fetched from the job's published artifacts (output.compilation.compiled_circuits); lang is matched against the available format keys (e.g. "native" → ionq.native.v1). Compiled-circuit artifacts come from the v0.4 compiler stack, which is rolling out as the prod default — until then, pass service_version="v0.4" as above, otherwise no compiled circuit is published and compiled_circuit() raises listing the available formats (none). Dry-run jobs produce no measurement results, so calling job.result() on one raises IonQJobError directing you to compiled_circuit(...).
Per-shot memory (memory)
QPU and noisy-simulator jobs can return per-shot measurement outcomes. Pass memory=True on backend.run(...) to opt in (the default is False, matching the qiskit and qiskit-aer backend.run convention), then call job.get_memory() to retrieve the per-shot bitstrings:
job = backend.run(qc, shots=1000, memory=True)
memory = job.get_memory() # ['11', '00', '11', '00', ...]
The ideal simulator does not produce per-shot data; calling get_memory() on a job submitted without memory=True raises IonQBackendError.
Mid-circuit measurements
The IonQ provider supports mid-circuit measurements, qubit reuse, and mid-circuit reset. Results are reported per declared classical register, like Qiskit's usual register-split counts. Single-circuit only; pass error_mitigation/symmetry_verification via job_settings.
These run automatically as OpenQASM 3 (ionq.qasm3.v1); no extra flags needed. Today they execute on the simulator (mid-circuit-measurement QPU support is rolling out); other targets are rejected server-side. Register names that are OpenQASM 3 reserved words (output, input, measure, …) are rejected at submission.
Per-register results require sampling, so use a noisy simulator (noise_model=...) or a QPU; the ideal simulator returns only the aggregate distribution and result() raises there.
from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister
qr = QuantumRegister(1, "q")
mid = ClassicalRegister(1, "mid")
result = ClassicalRegister(2, "result")
qc = QuantumCircuit(qr, mid, result)
qc.h(0)
qc.measure(0, mid[0]) # mid-circuit measurement
qc.x(0)
qc.measure(0, result[0]) # qubit reused after measurement
qc.x(0)
qc.measure(0, result[1])
job = backend.run(qc, shots=100, memory=True, noise_model="aria-1")
result = job.result()
result.get_counts() # split across registers, e.g. {'01 0': 96, '10 1': 104}
result.get_memory() # per-shot, e.g. ['01 0', '10 1', ...]
Basis gates and transpilation
The IonQ provider provides access to the full IonQ Cloud backend, which includes its own transpilation and compilation pipeline. As such, IonQ provider backends have a broad set of "basis gates" that they will accept — effectively anything the IonQ API will accept. The current supported gates can be found on our docs site.
If you have circuits that you'd like to run on IonQ backends that use other gates than this (u or iswap for example), you will either need to manually rewrite the circuit to only use the above list, or use the Qiskit transpiler, per the example below. Please note that not all circuits can be automatically transpiled.
If you'd like lower-level access—the ability to program in native gates and skip our compilation/transpilation pipeline—please reach out to your IonQ contact for further information.
from qiskit import QuantumCircuit, transpile
from math import pi
qc2 = QuantumCircuit(1, 1)
qc2.u(pi, pi/2, pi/4, 0)
qc2.measure(0,0)
transpiled_circuit = transpile(qc2, simulator_backend)
Contributing
If you'd like to contribute to the IonQ Provider, please take a look at the contribution guidelines. This project adheres the Qiskit Community code of conduct. By participating, you are agreeing to uphold this code.
If you have an enhancement request or bug report, we encourage you to open an issue in this repo's issues tracker. If you have a support question or general discussion topic, we recommend instead asking on the Qiskit community slack (you can join using this link) or the Quantum Computing StackExchange.
Running Tests
This package uses the pytest test runner, and other packages
for mocking interfactions, reporting coverage, etc.
These can be installed with pip install -r requirements-test.txt.
To use pytest directly, just run:
pytest [pytest-args]
Alternatively, you may use the setuptools integration by running tests through setup.py, e.g.:
python setup.py test --addopts="[pytest-args]"
Fixtures
Global pytest fixtures for the test suite can be found in the top-level test/conftest.py file.
SSL certificate issues
If you receive the error SSLError(SSLCertVerificationError) or otherwise are unable to connect succesfully, there are a few possible resolutions:
- Try accessing https://api.ionq.co/v0.4/health in your browser; if this does not load, you need to contact an IT administrator about allowing IonQ API access.
pip install pip_system_certsinstructs python to use the same certificate roots of trust as your local browser - install this if the first step succeeded but qiskit-ionq continues to have issues.- You can debug further by running
res = requests.get('https://api.ionq.co/v0.4/health', timeout=30)and inspectingres, you should receive a 200 response with the content{"status": "pass"}. If you see a corporate or ISP login page, you will need to contact a local IT administrator to debug further.
Documentation
To build the API reference and quickstart docs, run:
pip install -r requirements-docs.txt
make html
open build/html/index.html
License
The IonQ logo and Q mark are copyright IonQ, Inc. All rights reserved.
Release files for qiskit-ionq 1.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| qiskit_ionq-1.1.1.tar.gz | 57.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| qiskit_ionq-1.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 118.0 kB
Release files / qiskit_ionq-1.1.1.tar.gz
| Download URL | qiskit_ionq-1.1.1.tar.gz |
|---|---|
| Size | 57.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c41aee8d1b89eb72d2b4c53b1431cb75a8c62691d1eb263a51cf654a9f16682e
|
|
BLAKE2b-256 checksum How to use checksums |
8f54115ba3769ccff9ef8090ac59cd24bc6207a7f9c316f71c02d4fd8ecdec64
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 5, 2026.
Transparency logRelease files / qiskit_ionq-1.1.1-py3-none-any.whl
| Download URL | qiskit_ionq-1.1.1-py3-none-any.whl |
|---|---|
| Size | 60.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
03146012649f639e224119c718c0d62e9a46ca22babd669b4d5a01818b02aee6
|
|
BLAKE2b-256 checksum How to use checksums |
f759055d27a4cc6af96faf0b80bc6989c6cc69863e9cb5963c3867cac6113d72
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 5, 2026.
Transparency log