Returns the full agent-tool topology graph
curl --request GET \
--url http://localhost:8000/api/v1/topology/graph{
"nodes": [
{
"id": "researcher-agent",
"type": "agent",
"label": "Researcher",
"metadata": {
"framework": "langchain",
"role": "Research and analysis",
"model": "gpt-4o",
"tools_observed": ["search_documents", "fetch_url"],
"maturity": "MATURE"
}
},
{
"id": "tool:search_documents",
"type": "tool",
"label": "search_documents",
"metadata": {
"category": "memory_read"
}
}
],
"edges": [
{
"id": "abc123",
"source": "researcher-agent",
"target": "tool:search_documents",
"type": "agent_to_tool",
"call_count": 42,
"tool_category": "memory_read"
}
]
}
Show child attributes
agent_to_agent or agent_to_toolfunction_call or team_memberLOW, MEDIUM, or HIGH{
"nodes": [
{
"id": "researcher-agent",
"type": "agent",
"label": "Researcher",
"metadata": {
"framework": "langchain",
"role": "Research and analysis",
"model": "gpt-4o",
"tools_observed": ["search_documents", "fetch_url"],
"maturity": "MATURE"
}
},
{
"id": "tool:search_documents",
"type": "tool",
"label": "search_documents",
"metadata": {
"category": "memory_read"
}
}
],
"edges": [
{
"id": "abc123",
"source": "researcher-agent",
"target": "tool:search_documents",
"type": "agent_to_tool",
"call_count": 42,
"tool_category": "memory_read"
}
]
}
curl --request GET \
--url http://localhost:8000/api/v1/topology/graph{
"nodes": [
{
"id": "researcher-agent",
"type": "agent",
"label": "Researcher",
"metadata": {
"framework": "langchain",
"role": "Research and analysis",
"model": "gpt-4o",
"tools_observed": ["search_documents", "fetch_url"],
"maturity": "MATURE"
}
},
{
"id": "tool:search_documents",
"type": "tool",
"label": "search_documents",
"metadata": {
"category": "memory_read"
}
}
],
"edges": [
{
"id": "abc123",
"source": "researcher-agent",
"target": "tool:search_documents",
"type": "agent_to_tool",
"call_count": 42,
"tool_category": "memory_read"
}
]
}