Get Graph Ir
Framework-agnostic JSON IR — primary contract for UI rendering.
GET
Get Graph Ir
Last modified on May 22, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Framework-agnostic JSON IR — primary contract for UI rendering.
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"
}Successful Response
Was this page helpful?
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"
}