Resemble AI subpackage_agentTools API

The subpackage_agentTools API from Resemble AI — 2 operation(s) for subpackage_agenttools.

Operations 5

GET /agents/{agent_uuid}/tools List agent tools #
POST /agents/{agent_uuid}/tools Create agent tool #
GET /agents/{agent_uuid}/tools/{tool_uuid} Get agent tool #
DELETE /agents/{agent_uuid}/tools/{tool_uuid} Delete agent tool #
PATCH /agents/{agent_uuid}/tools/{tool_uuid} Update agent tool #

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/resemble-ai-subpackage-agenttools-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

resemble-ai-subpackage-agenttools-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Agent Tools API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_agentTools
paths:
  /agents/{agent_uuid}/tools:
    get:
      operationId: list-agent-tools
      summary: List agent tools
      description: List all tools for an agent
      tags:
      - subpackage_agentTools
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of tools
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Tools_listAgentTools_Response_200'
    post:
      operationId: create-agent-tool
      summary: Create agent tool
      description: Create a new tool for an agent
      tags:
      - subpackage_agentTools
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Tool created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Tools_createAgentTool_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                tool_type:
                  $ref: '#/components/schemas/AgentsAgentUuidToolsPostRequestBodyContentApplicationJsonSchemaToolType'
                tool_config:
                  $ref: '#/components/schemas/AgentsAgentUuidToolsPostRequestBodyContentApplicationJsonSchemaToolConfig'
              required:
              - name
              - description
              - tool_type
              - tool_config
  /agents/{agent_uuid}/tools/{tool_uuid}:
    get:
      operationId: get-agent-tool
      summary: Get agent tool
      description: Get details of a specific tool
      tags:
      - subpackage_agentTools
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: tool_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Tool details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Tools_getAgentTool_Response_200'
    delete:
      operationId: delete-agent-tool
      summary: Delete agent tool
      description: Delete a tool
      tags:
      - subpackage_agentTools
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: tool_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Tool deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Tools_deleteAgentTool_Response_200'
    patch:
      operationId: update-agent-tool
      summary: Update agent tool
      description: Update an existing tool
      tags:
      - subpackage_agentTools
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: tool_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Tool updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Tools_updateAgentTool_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                tool_config:
                  $ref: '#/components/schemas/AgentsAgentUuidToolsToolUuidPatchRequestBodyContentApplicationJsonSchemaToolConfig'
components:
  schemas:
    AgentsAgentUuidToolsPostRequestBodyContentApplicationJsonSchemaToolConfig:
      type: object
      properties: {}
      title: AgentsAgentUuidToolsPostRequestBodyContentApplicationJsonSchemaToolConfig
    AgentsAgentUuidToolsPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: AgentsAgentUuidToolsPostResponsesContentApplicationJsonSchemaItem
    Agent_Tools_deleteAgentTool_Response_200:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
      title: Agent Tools_deleteAgentTool_Response_200
    AgentsAgentUuidToolsPostRequestBodyContentApplicationJsonSchemaToolType:
      type: string
      enum:
      - webhook
      - client
      title: AgentsAgentUuidToolsPostRequestBodyContentApplicationJsonSchemaToolType
    AgentsAgentUuidToolsToolUuidGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: AgentsAgentUuidToolsToolUuidGetResponsesContentApplicationJsonSchemaItem
    AgentsAgentUuidToolsGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties: {}
      title: AgentsAgentUuidToolsGetResponsesContentApplicationJsonSchemaItemsItems
    Agent_Tools_updateAgentTool_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/AgentsAgentUuidToolsToolUuidPatchResponsesContentApplicationJsonSchemaItem'
        message:
          type: string
      title: Agent Tools_updateAgentTool_Response_200
    Agent_Tools_createAgentTool_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/AgentsAgentUuidToolsPostResponsesContentApplicationJsonSchemaItem'
        message:
          type: string
      title: Agent Tools_createAgentTool_Response_200
    AgentsAgentUuidToolsToolUuidPatchRequestBodyContentApplicationJsonSchemaToolConfig:
      type: object
      properties: {}
      title: AgentsAgentUuidToolsToolUuidPatchRequestBodyContentApplicationJsonSchemaToolConfig
    AgentsAgentUuidToolsToolUuidPatchResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: AgentsAgentUuidToolsToolUuidPatchResponsesContentApplicationJsonSchemaItem
    Agent_Tools_getAgentTool_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/AgentsAgentUuidToolsToolUuidGetResponsesContentApplicationJsonSchemaItem'
      title: Agent Tools_getAgentTool_Response_200
    Agent_Tools_listAgentTools_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/AgentsAgentUuidToolsGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Agent Tools_listAgentTools_Response_200
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api