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

# List predefined built-in tools

> Retrieves the list of predefined built-in tools that can be configured for agents.
Built-in tools provide standard functionality that agents can use during conversations.



## OpenAPI

````yaml https://blackbox.dasha.ai/swagger/v1/swagger.json get /api/v1/misc/builtin-tools
openapi: 3.0.4
info:
  title: Dasha BlackBox Agent API
  description: API for managing AI agents and calls
  contact:
    name: DashaAI Team
    email: support@dasha.ai
  version: v1
servers:
  - url: https://blackbox.dasha.ai
    description: Dasha BlackBox Agent API
security:
  - ApiKey: []
  - OAuth: []
tags:
  - name: ActivityLogs
  - name: Agents
  - name: AgentTestCases
  - name: CallResults
  - name: Calls
  - name: Chats
  - name: Copilot
  - name: CustomerData
  - name: Mcp
  - name: Media
  - name: Misc
  - name: PronunciationDictionaries
  - name: Providers
  - name: SipAliases
  - name: SipCredentials
  - name: SipPhoneNumbers
  - name: TextChat
  - name: TwilioProvider
  - name: Voice
  - name: WebhookTest
  - name: WebIntegrations
  - name: WebSocket
    description: WebSocket endpoints for real-time communication
paths:
  /api/v1/misc/builtin-tools:
    get:
      tags:
        - Misc
      summary: List predefined built-in tools
      description: >-
        Retrieves the list of predefined built-in tools that can be configured
        for agents.

        Built-in tools provide standard functionality that agents can use during
        conversations.
      responses:
        '200':
          description: Returns predefined built-in tools successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuiltInToolsListResponseDto'
components:
  schemas:
    BuiltInToolsListResponseDto:
      required:
        - items
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/BuiltInToolDto'
          description: >-
            Available built-in tools with their names and descriptions. Use the
            tool names when configuring which capabilities should be available
            to your agents during calls.
      additionalProperties: false
      description: >-
        List of available built-in tools that can be configured for agents.
        Built-in tools provide standard system functionality like ending
        conversations or other common operations that agents can invoke during
        conversations without requiring custom tool implementations.
    BuiltInToolDto:
      required:
        - description
        - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
          description: >-
            Unique identifier of the built-in tool. Use this name when
            configuring which tools are available to an agent. Examples include
            "finishTheConversation" for ending calls gracefully.
        description:
          minLength: 1
          type: string
          description: >-
            Human-readable description explaining what the tool does and when
            agents should use it. Helps understand the tool's purpose when
            configuring agent capabilities.
      additionalProperties: false
      description: >-
        Built-in tool providing standard functionality that agents can use
        during conversations. Built-in tools are predefined system capabilities
        like ending conversations, transferring calls, or other common call
        control operations that don't require custom implementation.
  securitySchemes:
    ApiKey:
      type: http
      description: API Key Authentication (Bearer {key})
      scheme: Bearer
    OAuth:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://auth.dasha.ai/connect/authorize
          scopes:
            platform_api: Platform API

````