Tools
List Tools
List all tools registered with an agent
GET
List Tools
List Tools
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
AgentFlow is built by ES Consulting — production AI systems, delivered.
List all tools registered with an agent
curl --request GET \
--url https://api.example.com/agent/{agent_id}/tools| Parameter | Type | Description |
|---|---|---|
agent_id | string | The agent’s unique identifier |
[
{
"id": "tool_abc123",
"name": "calculator",
"description": "Perform basic arithmetic",
"parameters": {
"type": "object",
"properties": {
"x": {"type": "integer"},
"y": {"type": "integer"},
"operation": {"type": "string"}
},
"required": ["x", "y", "operation"]
}
}
]
Was this page helpful?
curl --request GET \
--url https://api.example.com/agent/{agent_id}/tools