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

# Get a specific tool

> Fetches a specific tool by its ID from Sol.



## OpenAPI

````yaml sol-open-api-spec.yaml get /tools/{toolId}
openapi: 3.0.0
info:
  title: Sol API
  description: >-
    API for managing AI-powered tool integrations in third-party applications,
    enabling seamless automation and execution of tasks.
  version: 1.0.0
servers:
  - url: https://api.sol.com/v1
    description: Main (production) server
security: []
paths:
  /tools/{toolId}:
    get:
      summary: Get a specific tool
      description: Fetches a specific tool by its ID from Sol.
      parameters:
        - in: path
          name: toolId
          schema:
            type: string
          required: true
          description: The ID of the tool to retrieve
      responses:
        '200':
          description: Details of the tool
          content:
            application/json:
              schema:
                type: object
                properties:
                  toolId:
                    type: string
                    example: tool-6789
                  name:
                    type: string
                    example: Create Email Draft
                  provider:
                    type: string
                    example: Gmail
                  description:
                    type: string
                    example: Create a draft email with the given parameters.
                  params:
                    type: object
                    properties:
                      from_email:
                        type: string
                        example: noreply@sol.com
                      to_email:
                        type: string
                        example: tara@sol.com

````