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
}
}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/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
}
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Unique run identifier (ULID).
Identifier of a stage within a run's workflow graph.
Maximum number of items to return per page.
1 <= x <= 100Number of items to skip before returning results.
x >= 0Paginated list of conversation turns