elevenlabs Tools API

Endpoints for managing external tools and webhook integrations that agents can invoke during conversations.

Operations 3

GET /v1/convai/tools List tools #
POST /v1/convai/tools Create tool #
DELETE /v1/convai/tools/{tool_id} Delete tool #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/elevenlabs-tools-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

elevenlabs-tools-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ElevenLabs Audio Isolation Agents Tools API
  description: The ElevenLabs Audio Isolation API removes background noise from audio recordings, isolating vocal tracks from ambient sounds and interference. This is useful for cleaning up recordings, improving audio quality for podcasts and interviews, and preparing audio files for further processing such as voice cloning or transcription.
  version: '1.0'
  contact:
    name: ElevenLabs Support
    url: https://help.elevenlabs.io
  termsOfService: https://elevenlabs.io/terms-of-service
servers:
- url: https://api.elevenlabs.io
  description: Production Server
security:
- apiKeyAuth: []
tags:
- name: Tools
  description: Endpoints for managing external tools and webhook integrations that agents can invoke during conversations.
paths:
  /v1/convai/tools:
    get:
      operationId: listTools
      summary: List tools
      description: Returns a list of tools configured for use by conversational AI agents, including webhook and MCP server integrations.
      tags:
      - Tools
      responses:
        '200':
          description: Tools listed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolListResponse'
        '401':
          description: Unauthorized - invalid or missing API key
    post:
      operationId: createTool
      summary: Create tool
      description: Creates a new tool that agents can invoke during conversations. Tools can be webhook endpoints that connect to external services for real-time data retrieval or action execution.
      tags:
      - Tools
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateToolRequest'
      responses:
        '200':
          description: Tool created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tool'
        '400':
          description: Bad request - invalid configuration
        '401':
          description: Unauthorized - invalid or missing API key
  /v1/convai/tools/{tool_id}:
    delete:
      operationId: deleteTool
      summary: Delete tool
      description: Deletes a tool configuration.
      tags:
      - Tools
      parameters:
      - name: tool_id
        in: path
        required: true
        description: The identifier of the tool to delete.
        schema:
          type: string
      responses:
        '200':
          description: Tool deleted successfully
        '401':
          description: Unauthorized - invalid or missing API key
        '404':
          description: Tool not found
components:
  schemas:
    Tool:
      type: object
      properties:
        tool_id:
          type: string
          description: Unique identifier for the tool.
        name:
          type: string
          description: Display name of the tool.
        type:
          type: string
          description: The type of tool integration.
          enum:
          - webhook
          - mcp
          - client
        description:
          type: string
          description: Description of what the tool does.
        webhook_url:
          type: string
          format: uri
          description: The webhook URL for webhook-type tools.
        parameters:
          type: object
          description: JSON Schema defining the parameters the tool accepts.
        created_at:
          type: string
          format: date-time
          description: Timestamp when the tool was created.
    CreateToolRequest:
      type: object
      required:
      - name
      - type
      properties:
        name:
          type: string
          description: Display name for the tool.
        type:
          type: string
          description: The type of tool to create.
          enum:
          - webhook
          - mcp
          - client
        description:
          type: string
          description: Description of what the tool does.
        webhook_url:
          type: string
          format: uri
          description: The webhook endpoint URL for webhook-type tools.
        parameters:
          type: object
          description: JSON Schema defining the parameters the tool accepts.
    ToolListResponse:
      type: object
      properties:
        tools:
          type: array
          description: List of configured tools.
          items:
            $ref: '#/components/schemas/Tool'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: xi-api-key
      description: ElevenLabs API key passed in the xi-api-key header for authentication.
externalDocs:
  description: ElevenLabs Audio Isolation API Documentation
  url: https://elevenlabs.io/docs/api-reference/audio-isolation/audio-isolation