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

# Get Job Result

`GET /jobs/{job_qrn}/result`

Retrieve the result data for a quantum job.

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

**Returns:**
- Result object containing job result data including measurement counts and timestamps

**Raises:**
- **404**: Job is not found
- **409**: Job results are not yet available or are not valid JSON
- **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

- GetJobResultResponse — Response schema for retrieving job results
  - `success` boolean, required
  - `data` Result, required — Schema for job result
    - `status` 'INITIALIZING' | 'QUEUED' | 'VALIDATING' | 'RUNNING' | 'CANCELLING' | 'CANCELLED' | 'COMPLETED' | 'FAILED' | 'UNKNOWN' | 'HOLD', required — Enum for the status of processes (i.e. quantum jobs / tasks) resulting from any `qbraid.runtime.QuantumDevice.run` method. Displayed status text values may differ from those listed below to provide additional visibility into tracebacks, particularly for failed jobs.
    - `cost` number, required — A monetary amount where 1 Credit = $0.01 USD.
    - `timeStamps` TimeStamps, required — 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
    - `resultData` object, required

## Other responses

- `404` — Job Not Found
- `409` — Conflict
- `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)
