API Reference · Agent Tasks
List recent runs across the workspace
The run ledger — the 30 most recent agent tasks across every agent and the master, newest first, with trajectories stripped (fetch one task for its full plan).
GET/v1/tenants/{name}/tasks
Authorization
x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.
Path parameters
namestringrequired
Workspace (tenant) name.
Response
200 — Recent runs.
tasksarray
curl https://api.live-llm.com/v1/tenants/acme/tasks \ -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/tasks
Fill required path param: name.
Example response200
{
"tasks": [
{
"id": "task_8f31",
"workloadId": "dev-box",
"prompt": "Fix the failing login test",
"status": "done",
"result": "Fixed \\u2014 the mocked clock drifted; 3 files changed, tests green.",
"steps": [
{
"title": "Reproduce the failure",
"detail": "login.spec.ts:41 flaky under fake timers",
"status": "done"
},
{
"title": "Fix and re-run",
"detail": "npm test \\u2014 214 passed",
"status": "done"
}
],
"createdAt": "2026-08-02T09:00:00Z",
"finishedAt": "2026-08-02T09:06:00Z"
}
]
}