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

# List Jobs

> List recent async jobs for your team

Returns the 50 most recent jobs for the authenticated team, ordered by creation time descending.

## Authentication

<ParamField header="Authorization" type="string">
  Bearer token. `Bearer <api-key-or-jwt>`.
</ParamField>

## Query Parameters

<ParamField query="type" type="string">
  Filter by job type. One of: `image_gen`, `render`, `publish`.
</ParamField>

<ParamField query="status" type="string">
  Filter by status. One of: `pending`, `processing`, `completed`, `failed`.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "0b1e9a5f-...",
      "type": "image_gen",
      "status": "completed",
      "result": {
        "url": "https://cdn.supapost.so/assets/team-uuid/1712000000-generated.jpg",
        "width": 1080,
        "height": 1920,
        "content_type": "image/jpeg"
      },
      "error": null,
      "created_at": "2026-04-11T10:00:00Z",
      "updated_at": "2026-04-11T10:00:08Z"
    }
  ]
  ```
</ResponseExample>
