Skip to main content
GET
/
agent
/
{agent_id}
/
tools
List Tools
curl --request GET \
  --url https://api.example.com/agent/{agent_id}/tools

Path Parameters

ParameterTypeDescription
agent_idstringThe agent’s unique identifier

Response

[
  {
    "id": "tool_uuid_123",
    "name": "calculator",
    "description": "Perform basic arithmetic",
    "parameters": {
      "type": "object",
      "properties": {
        "x": {"type": "integer"},
        "y": {"type": "integer"},
        "operation": {"type": "string"}
      },
      "required": ["x", "y", "operation"]
    }
  }
]