---
title: "Get job status"
slug: "get-job-status-1"
updated: 2025-11-21T01:09:48Z
published: 2025-11-21T01:09:59Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wasabi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get job status

Get/jobs/{Id}/status

Fetches the current status of a job.

SecurityAPI Key: WasabiAuthHeader parameter namex-amz-access-key

Wasabi access key for authenticating requests. A valid Wasabi User access key is required for API calls.

API Key: WasabiSecretAuthHeader parameter namex-amz-secret-key

Wasabi secret key for authenticating requests. A valid Wasabi User secret key is required along with the access key.

Path parametersIdstringRequired

Responses200

Job status retrieved successfully

<select class='api-response-data' aria-label='Media type'><option value='d0597699-c7b2-472f-a6af-72a2e8b28b98'>application/json</option>
</select>object  Idstring    Example12345
Statusstring    

Current status of the job

Valid values[
  "submitted",
  "preflight",
  "in_progress",
  "completed",
  "failed",
  "cancelled"
]Examplein_progress
ErrorCountinteger    

Count of errors encountered

Default0Example0

401

Unauthorized

<select class='api-response-data' aria-label='Media type'><option value='5738750c-3313-445a-820d-dacec8067800'>application/json</option>
</select>

```json
{
  "Error": "Unauthorized",
  "ErrorCode": "UNAUTHORIZED"
}
```

object  Errorstring    

Error message explaining what went wrong

ExampleAn unexpected error occurred while processing the job.
ErrorCodestring    

Error code for troubleshooting

ExampleINTERNAL_ERROR

404

Job not found

<select class='api-response-data' aria-label='Media type'><option value='61b087e7-caaa-4650-affd-fb14d5920350'>application/json</option>
</select>

```json
{
  "ErrorCode": "NOT_FOUND"
}
```

object  Errorstring    

Error message explaining what went wrong

ExampleAn unexpected error occurred while processing the job.
ErrorCodestring    

Error code for troubleshooting

ExampleINTERNAL_ERROR

500

Internal Server Error

<select class='api-response-data' aria-label='Media type'><option value='f573955c-76ea-49c5-83f6-56a0fa338af0'>application/json</option>
</select>

```json
{
  "Error": "An unexpected error occurred while processing the job.",
  "ErrorCode": "INTERNAL_ERROR"
}
```

object  Errorstring    

Error message explaining what went wrong

ExampleAn unexpected error occurred while processing the job.
ErrorCodestring    

Error code for troubleshooting

ExampleINTERNAL_ERROR
