FruxonDocs
ApiAgent network

Returns the read-only graph projection for Agent Network.

Composes existing Network primitives into nodes and typed edges for the future canvas. This endpoint does not mutate graph state; writes stay on participants, triggers, slot bindings, and channel materializers.

GET
/v1/tenants/{tenant}/network/graph
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

tenant*string

The tenant identifier

Query Parameters

agentId?string

Optional agent id to scope the graph to a single agent. When omitted, returns the tenant-wide network.

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/network/graph"
{
  "nodes": [
    {
      "id": "string",
      "kind": "AGENT",
      "label": "string",
      "agentId": "string",
      "participantId": "00000000-0000-0000-0000-000000000000",
      "triggerId": "00000000-0000-0000-0000-000000000000",
      "slotName": "string",
      "avatarFileId": "string",
      "metadata": {}
    }
  ],
  "edges": [
    {
      "id": "string",
      "kind": "CAN_MESSAGE",
      "sourceNodeId": "string",
      "targetNodeId": "string",
      "agentId": "string",
      "participantId": "00000000-0000-0000-0000-000000000000",
      "triggerId": "00000000-0000-0000-0000-000000000000",
      "slotName": "string",
      "bindingId": "00000000-0000-0000-0000-000000000000",
      "metadata": {}
    }
  ],
  "truncated": false
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}