Managing jobs

List jobs

sim.list_jobs() returns the recent jobs for your tenant, newest first, each as a QXelJob handle. Use it to build a dashboard, find a job_id you forgot, or filter for failures.

List recent jobs

python
for job in sim.list_jobs():
    print(job.job_id, job.status, job.created_at)

Output

job_a1b2c3...  SUCCEEDED  2026-06-06T05:21:33Z
job_d4e5f6...  RUNNING    2026-06-06T05:20:11Z
job_g7h8i9...  FAILED     2026-06-06T05:02:48Z

Filter in Python

The items are full job handles, so you can filter and act on them. For example, collect the results of every job that succeeded:

python
done = [j for j in sim.list_jobs() if j.is_succeeded()]
results = [j.result() for j in done]