---
title: "Get Tool Detail"
method: GET
path: "/v1/tool/{tool_name}/detail"
tags: ["tool management"]
---

# Get Tool Detail

`GET /v1/tool/{tool_name}/detail`

Get a single tool with its policy overrides (for UI detail view).

## Path parameters

- `tool_name` string, required

## Response `200`

Successful Response

- ToolDetailResponse
  - `tool` LiteLLMToolTableRow, required
    - `tool_id` string, required
    - `tool_name` string, required
    - `origin` string, nullable
    - `input_policy` 'trusted' | 'untrusted' | 'blocked'
    - `output_policy` 'trusted' | 'untrusted'
    - `call_count` integer
    - `assignments` object, nullable
    - `key_hash` string, nullable
    - `team_id` string, nullable
    - `key_alias` string, nullable
    - `user_agent` string, nullable
    - `last_used_at` string, date-time, nullable
    - `created_at` string, date-time, nullable
    - `updated_at` string, date-time, nullable
    - `created_by` string, nullable
    - `updated_by` string, nullable
  - `overrides` ToolPolicyOverrideRow[]
    - `override_id` string, required
    - `tool_name` string, required
    - `team_id` string, nullable
    - `key_hash` string, nullable
    - `input_policy` 'trusted' | 'untrusted' | 'blocked'
    - `key_alias` string, nullable
    - `created_at` string, date-time, nullable
    - `updated_at` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/1e929292ddd5/schema)
