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

# Get Tool

> Get a specific tool by ID

## Request

```bash theme={null}
curl "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}
{
  "_id": "tool_abc123",
  "name": "Check Order Status",
  "type": "http",
  "description": "Use when the caller asks about their order status",
  "workspaceId": "WORKSPACE_ID",
  "config": {
    "method": "GET",
    "url": "https://api.yourcompany.com/orders/{order_id}",
    "headers": {
      "Authorization": "Bearer ****"
    }
  },
  "parameters": [
    {
      "name": "order_id",
      "description": "The customer order number",
      "required": true
    }
  ],
  "createdAt": "2025-01-01T00:00:00.000Z"
}
```
