---
title: "Poll a sample asynchronous job without authentication"
method: GET
path: "/demo/jobs/{id}"
tags: ["Demo"]
---

# Poll a sample asynchronous job without authentication

`GET /demo/jobs/{id}`

Public, no-auth demo. Returns the status of a synthetic job started by `POST /demo/jobs` — the poll half of the async-job pattern. No real work runs; the status is a fixed sample.

## Path parameters

- `id` string, required

## Response `200`

Current job status.

- object
  - `success` true, required
  - `demo` true, required
  - `note` string
  - `data` object, required
    - `id` string, required
    - `type` string
    - `status` 'queued' | 'processing' | 'completed' | 'failed', required
    - `progress` integer, required
    - `created_at` string, date-time
    - `estimated_completion_at` string, date-time

## Other responses

- `429` — Rate limit exceeded

---

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