Skip to main content
GET
/
api
/
v1
/
agents
/
{agent_id}
/
tools
Get Agent Tools
curl --request GET \
  --url http://localhost:8000/api/v1/agents/{agent_id}/tools
{
  "tool_name": "<string>",
  "tool_category": "<string>",
  "call_count": 123,
  "error_count": 123,
  "first_seen": "<string>",
  "last_seen": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.tracectrl.ai/llms.txt

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

Returns each tool an agent has invoked, with call/error counts and first/last seen timestamps.

Path Parameters

agent_id
string
required
The unique agent identifier.

Response

Array of AgentTool objects:
tool_name
string
Tool name
tool_category
string
Tool category (e.g., memory_read, http, code_exec)
call_count
integer
Total invocations
error_count
integer
Number of erroring invocations
first_seen
string
ISO-8601 timestamp
last_seen
string
ISO-8601 timestamp