---
title: "List Jobs"
method: GET
path: "/api/v1/jobs/"
tags: ["jobs"]
---

# List Jobs

`GET /api/v1/jobs/`

Retrieve a list of jobs with optional filtering by workflow ID or job status.

## Query parameters

- `workflow_id` string, uuid, nullable
- `status` string, nullable

## Headers

- `unstructured-api-key` string, nullable

## Response `200`

Successful Response

- JobInformation[]
  - `id` string, uuid, required
  - `workflow_id` string, uuid, required
  - `workflow_name` string, required
  - `status` 'SCHEDULED' | 'IN_PROGRESS' | 'COMPLETED' | 'STOPPED' | 'FAILED' | 'REJECTED', required
  - `created_at` string, date-time, required
  - `runtime` string, duration, nullable
  - `input_file_ids` string[], nullable
  - `output_node_files` NodeFileMetadata[], nullable
    - `node_id` string, uuid, required
    - `file_id` string, required
    - `node_type` string, required
    - `node_subtype` string, required
  - `job_type` 'ephemeral' | 'persistent' | 'scheduled' | 'template'

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/unstructuredapp/apis/platform-api.md) · [All operations](https://skmtc.net/unstructuredapp/apis/platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unstructuredapp/platform-api/versions/41676641a27c/schema)
