Skip to main content
GET
/
agent
/
graph
Get Graph Ir
curl --request GET \
  --url https://api.example.com/agent/graph
{
  "metadata": {
    "agent_name": "<string>",
    "root_id": "<string>",
    "warnings": [
      "<string>"
    ]
  },
  "nodes": [
    {
      "id": "<string>",
      "name": "<string>",
      "kind": "agent",
      "is_root": false,
      "description": "<string>",
      "model": "<string>",
      "loop_max_iterations": 123
    }
  ],
  "edges": [
    {
      "source": "<string>",
      "target": "<string>",
      "order": 123,
      "condition": "<string>",
      "label": "<string>"
    }
  ],
  "format_version": "1"
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Successful Response

metadata
AgentGraphMetadata · object
required
nodes
(AgentNode · object | ToolNode · object)[]
required
edges
AgentGraphEdge · object[]
required
format_version
string
default:1
Allowed value: "1"
Last modified on May 22, 2026