---
title: "Get job status"
method: POST
path: "/job/status"
---

# Get job status

`POST /job/status`

Returns timing, success state, output, and progress for a specific job.

## Query parameters

- `jobid` number
- `_async` boolean

## Headers

- `Prefer` 'respond-async'

## Request body

- JobStatusRequest
  - `jobid` number — Numeric identifier of the job to query, as returned from an async call.
  - `_async` boolean — Run the command asynchronously. Returns a job id immediately.

## Response `200`

Detailed status for a background job, including timing, success flag, and optional output.

- object
  - `finished` boolean, required — True once the job has completed.
  - `duration` number, required — Execution time in seconds.
  - `endTime` string, required — Timestamp when the job finished. (e.g. '2025-12-26T18:50:20.528746884+01:00')
  - `error` string, required — Error message, or empty string on success.
  - `id` number, required — Job identifier.
  - `startTime` string, required — Timestamp when the job started. (e.g. '2025-12-24T18:50:20.5281314+01:00')
  - `success` boolean, required — True if the job completed successfully.
  - `output` unknown
  - `progress` unknown

## Other responses

- `202` — Request accepted for async processing. Poll /job/status with the returned jobid.
- `4XX` — Any error response (HTTP 4xx/5xx)
- `5XX` — Any error response (HTTP 4xx/5xx)

---

[API](https://skmtc.net/rclone/apis/rclone-rc-api.md) · [All operations](https://skmtc.net/rclone/apis/rclone-rc-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rclone/rclone-rc-api/versions/2849bf2803ce/schema)
