Returns the subagent-flow graph rooted at this session: the session, its…
Returns the subagent-flow graph rooted at this session: the session, its children, their children, each node carrying its own event count.
GET /v1/agents/sessions/{id}/tree
| Address | https://api.hanzo.ai/v1/agents/sessions/{id}/tree |
| Method | GET |
| Operation | get_agents_sessions_by_id_tree |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the subagent-flow graph rooted at this session: the session, its children, their children, each node carrying its own event count. One indexed read pulls the whole flow (every node of a flow shares a root id), so the shape is assembled in memory rather than by walking the store per node.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes | ID is the session to act on, from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | treeNode | ok |
200 body — 33 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
children | body | treeNode[] | — | Children is this node's direct children, each a whole node, so the array nests to the depth of the flow. A leaf carries null rather than an empty array. |
session | body | sessionView | — | |
session.account | body | string | — | Account is which subscription or API account under that provider served it. |
session.actor | body | string | — | Actor is WHO this session belongs to, as "org/sub" — the same identity a run is billed under. A register that names none takes the calling principal. |
session.agent | body | string | — | Agent is the label the surface running this session calls itself by ("hanzo-dev"), up to 128 characters. Required at register. |
session.children | body | integer | — | Children is the DIRECT fan-out — how many sessions name this one as parent — and not the size of the subtree. |
session.createdAt | body | string | — | CreatedAt is when the row was written, same format. |
session.cwd | body | string | — | Cwd is the directory the session is working in NOW, not the one it started in: a linked shell moves around, and a card showing where hanzo link was run… |
session.endedAt | body | string | — | EndedAt is when it reached done or error, same format. |
session.events | body | integer | — | Events is how many turns the session's log holds, counted at read time. |
session.host | body | string | — | Execution context (mission-control): the machine/repo/cwd a card shows and the run-target a session is dispatched to. |
session.id | body | string | — | ID is the session's handle, minted here as "sess_" + 32 hex characters. |
session.lastEvent | body | lastEventView | — | |
session.lastEvent.actor | body | string | — | Actor is who produced the turn, defaulted to the calling principal when the writer named nobody. |
session.lastEvent.at | body | string | — | At is when the turn was recorded, RFC 3339 in UTC to the second. |
session.lastEvent.kind | body | string | — | Kind is what the turn was, from the log's closed six: message, tool-call, spawn, log, status, control. |
session.lastEvent.preview | body | string | — | Preview is the first 240 bytes of the event's payload, cut without regard for the JSON inside it — it is a string to SHOW, never a value to parse. |
session.lastEvent.seq | body | integer | — | Seq is that event's position in the session's log — monotonic from 1, per session. |
session.org | body | string | — | Org is the caller's OWN tenant, echoed so a client can build the public build URL (/builds/:org/:project) without a second call or a guess. |
session.parentSessionId | body | string | — | ParentSessionID is the session that spawned this one, making this a subagent of it. Empty means this session is a root — a flow of its own. |
session.project | body | string | — | The readable build: the product this session built and whether its story is public (provenance.go). |
session.provider | body | string | — | Provider is the linked AI account's provider (claude | codex | hanzo | …) that served this run. |
session.published | body | boolean | — | Published is the author's decision to let anyone read this session's story at the public build route. |
session.repo | body | string | — | Repo is the code the session is working on, as the surface reported it. |
session.rootSessionId | body | string | — | RootSessionID is the top of this session's tree, inherited from the parent and shared by every node in one flow. |
session.startedAt | body | string | — | StartedAt is when the session opened, RFC 3339 in UTC to the second. |
session.status | body | string | — | Status is one of exactly four: running, paused, done, error. |
session.target | body | string | — | Target is the registered run-target this session is dispatched to — a machine the org claimed, resolved same-org when it was set, so it can never point at… |
session.taskRunId | body | string | — | TaskRunID is that workflow's particular run. |
session.taskWorkflowId | body | string | — | TaskWorkflowID is the hanzoai/tasks durable workflow that actually EXECUTES this session — this registry is the view, control and stream layer over it. |
session.terminal | body | string | — | Terminal is where this session can be WATCHED — the URL the machine published for its live terminal. |
session.title | body | string | — | Title is the human line a card shows ("ship the landing page"), up to 512 characters. |
session.updatedAt | body | string | — | UpdatedAt is the session's last-activity clock, same format. |
Failure carries the platform error shape — see Errors.
Examples
hanzo agents sessions tree <id>import { Configuration, AgentsApi } from 'hanzoai';
const api = new AgentsApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getAgentsSessionsByIdTree({ id: 'id' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import AgentsApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = AgentsApi(client).get_agents_sessions_by_id_tree(id='id')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.AgentsAPI.GetAgentsSessionsByIdTree(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, agents_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = agents_api::get_agents_sessions_by_id_tree(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.AgentsApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new AgentsApi(client).getAgentsSessionsByIdTree();curl https://api.hanzo.ai/v1/agents/sessions/<id>/tree \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches agents through the agents tool, which names its 36 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_agent_conversations"
}
}
}'How is this guide?