IBM Cloud Docs
View final job results

View final job results

This tutorial describes how to review final results after running a job.

The new IBM Quantum Platform interface has been released in early access mode. It is recommended that you start using that interface to work with IBM Quantum services. Because it is built on IBM Cloud, migration is straightforward. See the migration guide for details.

The job's data will be deleted after 30 days.

Before you begin

Run your job and note the job ID.

Check the status

After the job completes, you can view the results.

Immediately after running the job, follow up the Qiskit Runtime QiskitRuntimeService.run() method by running job.status().

If you ran other jobs since running the job you want to investigate, run job = service.job(job_id) then run job.status().

Jobs are also listed on the Jobs page for your quantum service instance. From the IBM Cloud console quantum Instances page, click the name of your instance, then click the Jobs tab. To see the status of your job, click the refresh arrow in the upper right corner.

You can optionally run the List job details API, manually or by using Swagger to check the job's status.

View the results

Follow up the Qiskit Runtime QiskitRuntimeService.run() method by running job.result().

After the job completes, you can click the job on the Jobs page to view the result.

Alternatively, run the list job results API (Swagger link).

Next steps