---
title: "Retrieve all jobs"
method: GET
path: "/v1/applications/{application_id}/jobs"
tags: ["template"]
---

# Retrieve all jobs

`GET /v1/applications/{application_id}/jobs`

Retrieve all jobs created via the async API, linked to the provided application ID (or alias).

## Path parameters

- `application_id` string, required

## Query parameters

- `status` 'in_progress' | 'failed' | 'completed' — The status of the job.
- `offset` integer
- `limit` integer

## Response `200`

Successful response

- GetAsyncApplicationJobsResponse
  - `result` GetAsyncApplicationJobResponse[], required
    - `id` string, uuid, required — The unique identifier for the job.
    - `status` 'in_progress' | 'failed' | 'completed', required — The status of the job.
    - `application_id` string, required — The ID of the application associated with this job.
    - `created_at` string, date-time, required — The timestamp when the job was created.
    - `updated_at` string, date-time — The timestamp when the job was last updated.
    - `completed_at` string, date-time — The timestamp when the job was completed.
    - `data` GenerateApplicationResponse
      - `title` string — The name of the output field.
      - `suggestion` string, required — The response from the model specified in the application.
    - `error` string — The error message if the job failed.
  - `totalCount` integer — The total number of jobs associated with the application.
  - `pagination` object
    - `offset` integer — The pagination offset for retrieving the jobs.
    - `limit` integer — The pagination limit for retrieving the jobs.

## Changes

- **2025-02-25** `3d3b2fe43375` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/writer/apis/api/changes/v1/applications/:application_id/jobs/get.md)

---

[API](https://skmtc.dev/writer/apis/api.md) · [All operations](https://skmtc.dev/writer/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/writer/api/revisions/ae230e1d8c09/schema)
