curl --request GET \
--url https://api.example.com/api/v1/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
}
}Returns a paginated list of conversation turns within a specific stage, including system prompts, assistant responses, and tool invocations.
curl --request GET \
--url https://api.example.com/api/v1/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
}
}Raw dev token passed as Authorization: Bearer fabro_dev_... when server.auth.methods includes dev-token.
Unique run identifier (ULID).
Identifier of a stage within a run's workflow graph, serialized as node_id@visit.
Maximum number of items to return per page.
1 <= x <= 100Number of items to skip before returning results.
x >= 0Paginated list of conversation turns