> ## 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.

# Get Agent Tools

> Tools used by a specific agent

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

### Path Parameters

<ParamField path="agent_id" type="string" required>
  The unique agent identifier.
</ParamField>

### Response

Array of `AgentTool` objects:

<ResponseField name="tool_name" type="string">Tool name</ResponseField>
<ResponseField name="tool_category" type="string">Tool category (e.g., `memory_read`, `http`, `code_exec`)</ResponseField>
<ResponseField name="call_count" type="integer">Total invocations</ResponseField>
<ResponseField name="error_count" type="integer">Number of erroring invocations</ResponseField>
<ResponseField name="first_seen" type="string">ISO-8601 timestamp</ResponseField>
<ResponseField name="last_seen" type="string">ISO-8601 timestamp</ResponseField>
