Downloading legacy jobs data
- Log in to your qBraid account at account.qbraid.com
- Navigate to the Jobs page
- Look for the Download Old Jobs option
- Click to export all your legacy quantum jobs as a JSON file
- Save the JSON file to your local machine
Displaying legacy jobs with qBraid-SDK
Once you’ve downloaded your legacy jobs JSON file, you can view the jobs data using the qBraid-SDK.Prerequisites
Ensure you have qBraid-SDK version0.10.2 installed:
Loading the data
- Retrieving jobs
- Output
Functionality and limitations
Once theQbraidProvider is initialized with the legacy jobs JSON path, you can only use the display_jobs() method to display the jobs.
Methods that interface with the API, such as get_device(), will not work when using legacy jobs. This is because device information is not available through the old API endpoints.
For full functionality including device access and job submission, upgrade to
qBraid-SDK version 0.11.0 or greater and use the new V2 API endpoints. See
the V2 SDK documentation for details.
Retrieving job details with qbraid-core
For more detailed information about individual jobs, you can use the qbraid-core library, which provides direct access to job metadata and results.Prerequisites
Install qbraid-core version0.1.50:
Using QuantumClient
TheQuantumClient accepts the same legacy jobs JSON path parameter and provides methods for retrieving detailed job information:
Available methods
search_jobs()- Returns a list of all legacy jobsget_job(job_id)- Retrieves detailed metadata for a specific jobget_job_result(job_id)- Fetches the results and measurements for a completed job
Need help?
If you encounter any issues retrieving or working with your legacy jobs data, contact [email protected].Related
- Migration Guide - Learn about the platform migration
- V2 Documentation - Get started with the new platform
- qBraid-SDK Documentation - Full SDK reference
