> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orova.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Tool

> Delete a tool

## Request

```bash theme={null}
curl -X DELETE "https://app.orova.ai/api/tools/TOOL_ID" \
  -H "x-api-key: YOUR_API_KEY"
```

## Path parameters

| Parameter | Type   | Description |
| --------- | ------ | ----------- |
| `id`      | string | Tool ID     |

## Response

```json theme={null}
{
  "message": "Tool deleted successfully"
}
```

<Warning>
  Deleting a tool removes it from all agents that have it assigned. Make sure no active agents depend on it before deleting.
</Warning>
