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

# Get Tool by ID

> Retrieve a specific tool by its unique identifier

Retrieve detailed information about a specific tool by its unique identifier.

## Example

```bash theme={null}
curl -X GET "https://api.danubeai.com/v1/tools/abc123" \
  -H "danube-api-key: YOUR_API_KEY"
```


## OpenAPI

````yaml GET /tools/{tool_id}
openapi: 3.0.1
info:
  title: Danube API
  description: Tool discovery and execution platform for AI assistants
  version: 1.0.0
servers:
  - url: https://api.danubeai.com/v1
security: []
paths:
  /tools/{tool_id}:
    get:
      summary: Get Tool by ID
      description: Retrieve a specific tool by its unique identifier
      operationId: getToolById
      parameters:
        - name: tool_id
          in: path
          description: The unique identifier of the tool
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Tool details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tool'
        '404':
          description: Tool not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    Tool:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the tool
        name:
          type: string
          description: Display name of the tool
        description:
          type: string
          description: What the tool does
        service_id:
          type: string
          description: ID of the service this tool belongs to
        parameters:
          type: object
          description: JSON Schema defining the tool's input parameters
        status:
          type: string
          enum:
            - active
            - inactive
          description: Whether the tool is currently active
        tags:
          type: array
          items:
            type: string
          description: Tags for categorizing the tool
    Error:
      type: object
      properties:
        detail:
          type: string
          description: Error message
  securitySchemes:
    apiKey:
      type: apiKey
      name: danube-api-key
      in: header
      description: Your Danube API key

````