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

# Get Configurable Inbuilt Tools

> List all configurable inbuilt tools from the catalogue.

Returns a list of entries, each containing:
- ``key``: the stable configurable_key (e.g. ``"call_forward"``).
- ``title``: human-readable display name.
- ``registry_tool_id``: the TOOL_REGISTRY key for the underlying function.
- ``config_schema``: JSON schema of the extra user-configurable fields.



## OpenAPI

````yaml https://api-prod.interactly.ai/api-docs/workflows/api.json get /workflows/v1/tools/configurable-inbuilt
openapi: 3.1.0
info:
  title: Interactly API
  description: API for building interactly.ai services
  version: 1.1.0
  contact:
    name: Interactly
    url: https://interactly.ai
    email: developers@interactly.ai
servers:
  - url: https://api-prod.interactly.ai
    description: API Server
security: []
paths:
  /workflows/v1/tools/configurable-inbuilt:
    get:
      tags:
        - Tools
      summary: Get Configurable Inbuilt Tools
      description: >-
        List all configurable inbuilt tools from the catalogue.


        Returns a list of entries, each containing:

        - ``key``: the stable configurable_key (e.g. ``"call_forward"``).

        - ``title``: human-readable display name.

        - ``registry_tool_id``: the TOOL_REGISTRY key for the underlying
        function.

        - ``config_schema``: JSON schema of the extra user-configurable fields.
      operationId: >-
        workflow_service_get_configurable_inbuilt_tools_v1_tools_configurable_inbuilt_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: Bearer
      type: http
      description: >-
        Retrieve your API Key from [Dashboard API Keys
        Section](https://dashboard.interactly.ai/api-keys).

````