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

# Get Tool

> Retrieve details of a specific tool.



## OpenAPI

````yaml get /v1/bots/{bot_uid}/tools/{tool_id}
openapi: 3.1.0
info:
  title: OpenMic v1 External API
  description: >-
    API specification for OpenMic v1 External API, providing endpoints for bot
    management, call handling, and phone number operations.
  version: 1.0.0
servers:
  - url: https://api.openmic.ai
    description: Production Environment
security:
  - api_key: []
tags:
  - name: Calls
    description: Endpoints related to phone call creation and management.
  - name: Bots
    description: Endpoints related to bot management and configuration.
  - name: Phone Numbers
    description: Endpoints related to phone number management and bot linking.
  - name: Knowledge Bases
  - name: FAQs
  - name: Campaigns
  - name: Tools
  - name: Contact Lists
  - name: Contacts
  - name: Voices
    description: >-
      Endpoints for browsing available text-to-speech voices. Voices are
      read-only and can be filtered by gender, provider, language, and accent.
  - name: SMS
    description: Endpoints for sending SMS messages.
paths:
  /v1/bots/{bot_uid}/tools/{tool_id}:
    get:
      tags:
        - Tools
      summary: Get Tool
      description: Retrieve details of a specific tool.
      operationId: getToolExt
      parameters:
        - name: bot_uid
          in: path
          required: true
          schema:
            type: string
          description: The unique identifier of the bot.
        - name: tool_id
          in: path
          required: true
          schema:
            type: integer
          description: The numeric ID of the tool.
      responses:
        '200':
          description: Tool details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolResponse'
        '400':
          description: Invalid tool_id
        '404':
          description: Tool or bot not found
components:
  schemas:
    ToolResponse:
      type: object
      properties:
        id:
          type: integer
          description: Unique numeric ID of the tool.
        type:
          $ref: '#/components/schemas/ToolType'
        name:
          type: string
        description:
          type: string
        url:
          type: string
        method:
          type: string
        api_timeout:
          type: integer
        parameters:
          type: object
        use_raw_schema:
          type: boolean
        static_params:
          type: object
        speak_during_execution:
          type: boolean
        speak_after_execution:
          type: boolean
        async:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    ToolType:
      type: string
      description: >-
        The type of tool that determines its behavior and required
        configuration.
      enum:
        - api_request
        - function
        - end_call
        - transfer_call
        - dtmf
        - send_sms
        - send_email
        - call_booking
        - check_calendar_availability
        - check_working_hours
  securitySchemes:
    api_key:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        API key authentication. Include your API key in the Authorization header
        as: `Authorization: Bearer <your-api-key>`

````