---
title: "Get Job"
method: GET
path: "/jobs/{job_qrn}"
tags: ["jobs"]
---

# Get Job

`GET /jobs/{job_qrn}`

Retrieve a quantum job by its job QRN.

**Args:**
- **job_qrn** (string): Job QRN (qBraid Resource Name)

**Returns:**
- RuntimeJob object containing the job details

**Raises:**
- **403**: You do not have permission to access this job
- **404**: Job is not found
- **422**: Validation error if the job_qrn parameter is invalid

## Path parameters

- `job_qrn` string, required — Job QRN (qBraid Resource Name)

## Response `200`

Successful Response

- GetJobResponse — Response schema for retrieving a single job
  - `success` boolean, required
  - `data` RuntimeJob, required — Schema for runtime job model
    - `name` string, nullable — Job name
    - `shots` integer, required — Number of shots to execute
    - `deviceQrn` string, required — qBraid device resource name
    - `tags` object — Job tags
    - `runtimeOptions` object — Runtime options
    - `jobQrn` string, required — qBraid job resource name
    - `batchJobQrn` string, nullable — Batch job resource name
    - `vendor` 'aws' | 'azure' | 'ibm' | 'ionq' | 'qbraid', required — Vendor name
    - `provider` 'aqt' | 'aws' | 'azure' | 'equal1' | 'ibm' | 'iqm' | 'ionq' | 'nec' | 'oqc' | 'pasqal' | 'quantinuum' | 'quera' | 'rigetti' | 'qbraid', required — Provider name
    - `status` string, required — Job status
    - `statusMsg` string, nullable — Job status message
    - `experimentType` string, required — Experiment type
    - `queuePosition` integer, nullable — Job queue position
    - `timeStamps` TimeStamps — Model for capturing time-related information in an experiment.
      - `createdAt` string, date-time, required
      - `endedAt` string, date-time, nullable
      - `executionDuration` integer, nullable — Execution time in milliseconds
    - `cost` number, nullable — Job cost in credits
    - `estimatedCost` number, nullable, required — Job estimated cost in credits
    - `metadata` object — Job metadata

## Other responses

- `403` — Forbidden
- `404` — Job Not Found
- `422` — Validation Error

---

[API](https://skmtc.net/qbraid/apis/qbraid-runtime-api.md) · [All operations](https://skmtc.net/qbraid/apis/qbraid-runtime-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qbraid/qbraid-runtime-api/versions/6e818ad19cde/schema)
