Skip to main content
GET
Return the tenant’s currently-live jobs in one call. Equivalent to repeatedly hitting /jobs?status=queued, /jobs?status=running, /jobs?status=awaiting_approval and concatenating — but in one round trip. Sorted oldest-first so a dashboard naturally renders work in the order it was queued. No pagination because in-flight count is bounded by infrastructure (a tenant can’t have 10k jobs running simultaneously).

Response

JobStatusResponse[] — each element:
string
required
Job UUID.
string
required
Current status: queued, running, succeeded, failed, cancelled, awaiting_approval.
string
required
Agent type / template that was used.
string,null
Pipe-separated final assistant text. Populated when the job reaches a terminal state. Truncated to ≈5 segments × 280 chars.
string,null
Human-readable error message when status is ‘failed’ or ‘cancelled’.
integer,null
Cumulative input tokens consumed.
integer,null
Cumulative output tokens generated.
number,null
Cumulative billable cost. Priced at the job’s selected model rate (not the deployment default).
string
required
ISO 8601 UTC timestamp.
string
required
ISO 8601 UTC timestamp; refreshed on every iteration.

Status codes