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

# Get Tool

> Retrieves a tool by ID, including its input/output parameter schemas.



## OpenAPI

````yaml /openapi.yaml get /v1/tools/{toolId}
openapi: 3.1.0
info:
  title: AnchorBrowser API
  version: 1.0.0
  description: APIs to manage all browser-related actions and configuration.
servers:
  - url: https://api.anchorbrowser.io
    description: API server
security: []
paths:
  /v1/tools/{toolId}:
    get:
      tags:
        - Tools
      summary: Get Tool
      description: Retrieves a tool by ID, including its input/output parameter schemas.
      parameters:
        - name: toolId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Tool retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolResponse'
        '404':
          description: Tool not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlatErrorResponse'
        '500':
          description: Failed to get tool.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlatErrorResponse'
      security:
        - api_key_header: []
components:
  schemas:
    ToolResponse:
      type: object
      description: A tool (agentic or deterministic) the team can run.
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        application_id:
          type: string
          nullable: true
        language:
          type: string
          enum:
            - typescript
            - javascript
            - python
            - workflow
            - predefined
        input_schema:
          type: array
          items:
            $ref: '#/components/schemas/TaskParameter'
        output_schema:
          type: array
          items:
            $ref: '#/components/schemas/TaskParameter'
        task_default_browser_configuration:
          type: object
          additionalProperties: true
          nullable: true
          description: Default browser session configuration applied when the tool runs.
        task_id:
          type: string
        task_version:
          type: string
        output_file_only:
          type: boolean
        human_intervention:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    FlatErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
        code:
          type: integer
          description: HTTP status code.
      required:
        - error
    TaskParameter:
      type: object
      description: >-
        A task/tool input or output parameter definition (name, type,
        description, etc.).
      additionalProperties: true
  securitySchemes:
    api_key_header:
      type: apiKey
      in: header
      name: anchor-api-key
      description: API key passed in the header

````