curl --request GET \
--url https://api.example.com/api/v1/runs/{id}/stages/{stageId}/events \
--header 'Authorization: Bearer <token>'{
"data": [
{
"seq": 42,
"id": "<string>",
"ts": "2023-11-07T05:31:56Z",
"run_id": "<string>",
"event": "stage.started",
"node_id": "<string>",
"node_label": "<string>",
"stage_id": "<string>",
"parallel_group_id": "<string>",
"parallel_branch_id": "<string>",
"session_id": "<string>",
"parent_session_id": "<string>",
"tool_call_id": "<string>",
"actor": {
"kind": "user",
"identity": {
"issuer": "<string>",
"subject": "<string>"
},
"login": "<string>",
"auth_method": "github"
},
"properties": {}
}
],
"meta": {
"has_more": true
}
}Returns a paginated JSON list of stored run events scoped to a single stage visit.
curl --request GET \
--url https://api.example.com/api/v1/runs/{id}/stages/{stageId}/events \
--header 'Authorization: Bearer <token>'{
"data": [
{
"seq": 42,
"id": "<string>",
"ts": "2023-11-07T05:31:56Z",
"run_id": "<string>",
"event": "stage.started",
"node_id": "<string>",
"node_label": "<string>",
"stage_id": "<string>",
"parallel_group_id": "<string>",
"parallel_branch_id": "<string>",
"session_id": "<string>",
"parent_session_id": "<string>",
"tool_call_id": "<string>",
"actor": {
"kind": "user",
"identity": {
"issuer": "<string>",
"subject": "<string>"
},
"login": "<string>",
"auth_method": "github"
},
"properties": {}
}
],
"meta": {
"has_more": true
}
}Documentation Index
Fetch the complete documentation index at: https://docs.fabro.sh/llms.txt
Use this file to discover all available pages before exploring further.
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.
First event sequence number to include.
x >= 1Maximum number of events to return.
1 <= x <= 1000