v106

OpenAPI 3.1.0raw.githubusercontent.com2026-08-02160524464.6 KB
Human-in-the-Loop

List Run Questions

Returns pending human-in-the-loop questions for a run. Questions are generated when the workflow needs user input to proceed.

get/api/v1/runs/{id}/questions

Path parameters

idstring required

Unique run identifier (ULID).

Query parameters

page[limit]integer

Maximum number of items to return per page.

page[offset]integer

Number of items to skip before returning results.

Response

Array of pending questions

Example response

{
  "data": [
    {
      "id": "q-001",
      "text": "Should we proceed with the proposed changes?",
      "stage": "gate",
      "allow_freeform": true,
      "timeout_seconds": 30,
      "context_display": "Latest draft",
      "review_target": {
        "label": "Quarry review exercise",
        "url": "https://quarry.lithos.computer/tmp/0123456789abcdef0123456789abcdef"
      }
    }
  ]
}