Skip to main content
GET
/
runs
/
{id}
/
stages
/
{stageId}
/
turns
List Stage Turns
curl --request GET \
  --url https://api.example.com/runs/{id}/stages/{stageId}/turns \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "kind": "system",
      "content": "You are a drift detection agent. Compare the production and staging environments."
    }
  ],
  "meta": {
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

JWT bearer token issued by fabro-web. See the Authentication guide for details.

Path Parameters

id
string
required

Unique run identifier (ULID).

stageId
string
required

Identifier of a stage within a run's workflow graph.

Query Parameters

page[limit]
integer
default:20

Maximum number of items to return per page.

Required range: 1 <= x <= 100
page[offset]
integer
default:0

Number of items to skip before returning results.

Required range: x >= 0

Response

Paginated list of conversation turns

Paginated list of stage turns.

data
object[]
required

A single turn in a stage conversation — a system prompt, assistant response, or tool invocation block.

meta
object
required

Pagination metadata included in every paginated response.