Skip to main content
GET
/
api
/
v1
/
runs
/
{id}
/
stages
/
{stageId}
/
events
List Stage Events
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.

Authorizations

Authorization
string
header
required

Raw dev token passed as Authorization: Bearer fabro_dev_... when server.auth.methods includes dev-token.

Path Parameters

id
string
required

Unique run identifier (ULID).

stageId
string
required

Identifier of a stage within a run's workflow graph, serialized as node_id@visit.

Query Parameters

since_seq
integer
default:1

First event sequence number to include.

Required range: x >= 1
limit
integer
default:100

Maximum number of events to return.

Required range: 1 <= x <= 1000

Response

Paginated list of stage events

Paginated list of stored run events.

data
object[]
required
meta
object
required

Pagination metadata included in every paginated response.