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

# Get Tool Endpoint

Get Tool Endpoint

### Endpoint

**GET** `/v3/tools/{tool_id}`

### Description

Retrieves details of a specific tool by its ID.

### Authentication

API Key (`x-api-key`) in the header.

### Request Parameters

| Parameter | Type   | Description                  |
| --------- | ------ | ---------------------------- |
| `tool_id` | String | The ID of the tool to fetch. |

### Curl Request

```bash theme={null}
curl -X GET "https://agent-prod.studio.lyzr.ai/v3/tools/{tool_id}" ^
-H "accept: application/json" ^
-H "x-api-key: sk-default-REDACTED"
```

### Response

Returns the tool details, including configurations and settings.


## OpenAPI

````yaml get /tools/{tool_id}
openapi: 3.0.3
info:
  title: Lyzr Tool API
  version: 1.0.0
servers:
  - url: https://agent-prod.studio.lyzr.ai/v3
security: []
paths:
  /tools/{tool_id}:
    get:
      tags:
        - Tools
      summary: Get Tool by ID
      description: Retrieves details of a specific tool by its ID.
      operationId: getToolById
      parameters:
        - name: tool_id
          in: path
          required: true
          description: The ID of the tool to fetch.
          schema:
            type: string
      responses:
        '200':
          description: Tool retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: abc123
                  name:
                    type: string
                    example: Sample Tool
                  description:
                    type: string
                    example: This is a sample tool description.
                  config:
                    type: object
                    example: {}
        '401':
          description: Unauthorized - Invalid API key
        '404':
          description: Tool not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````