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

# List jobs

`GET /v1/jobs`

List all jobs for the authenticated user.

## Query parameters

- `limit` integer
- `offset` integer
- `status` 'pending' | 'submitted' | 'polling' | 'processing' | 'completed' | 'failed'

## Response `200`

List of jobs

- object
  - `jobs` object[]
    - `id` string, uuid
    - `status` 'pending' | 'submitted' | 'polling' | 'processing' | 'completed' | 'failed'
    - `action` string
    - `parent_job` string, uuid, nullable
    - `model_slug` string
    - `media_type` 'video' | 'image' | 'audio' | 'text' | 'unknown'
    - `cost` union
      - string
      - number
    - `cost_usd` number, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `total` integer
  - `limit` integer
  - `offset` integer

## Other responses

- `401` — Authentication required

---

[API](https://skmtc.net/glio/apis/glio-api.md) · [All operations](https://skmtc.net/glio/apis/glio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/glio/glio-api/revisions/436d70017226/schema)
