Flowise tools API

The tools API from Flowise — 2 operation(s) for tools.

Operations 5

POST /tools Create a new tool #
GET /tools List all tools #
GET /tools/{id} Get a tool by ID #
PUT /tools/{id} Update a tool by ID #
DELETE /tools/{id} Delete a tool by ID #

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/flowise-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

flowise-tools-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flowise APIs assistants Tools API
  version: 1.0.0
  description: 'Flowise REST API for managing AI agent flows, chatflows, assistants, document stores, tools, variables, and predictions.

    Bearer token authentication uses an API key generated in the Flowise admin UI. The default server is your local or hosted Flowise instance at /api/v1.

    '
  license:
    name: Apache 2.0
    url: https://github.com/FlowiseAI/Flowise/blob/main/LICENSE.md
  contact:
    name: FlowiseAI
    email: support@flowiseai.com
servers:
- url: http://localhost:3000/api/v1
  description: Local Flowise server
- url: https://{instance}.flowiseai.com/api/v1
  description: Flowise Cloud instance
  variables:
    instance:
      default: app
tags:
- name: tools
paths:
  /tools:
    post:
      tags:
      - tools
      security:
      - bearerAuth: []
      operationId: createTool
      summary: Create a new tool
      description: Create a new tool
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Tool'
        required: true
      responses:
        '200':
          description: Tool created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tool'
        '400':
          description: Invalid request body
        '422':
          description: Validation error
        '500':
          description: Internal server error
    get:
      tags:
      - tools
      security:
      - bearerAuth: []
      summary: List all tools
      description: Retrieve a list of all tools
      operationId: getAllTools
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Tool'
        '500':
          description: Internal server error
  /tools/{id}:
    get:
      tags:
      - tools
      security:
      - bearerAuth: []
      summary: Get a tool by ID
      description: Retrieve a specific tool by ID
      operationId: getToolById
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
        description: Tool ID
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tool'
        '400':
          description: Invalid ID provided
        '404':
          description: Tool not found
        '500':
          description: Internal server error
    put:
      tags:
      - tools
      security:
      - bearerAuth: []
      summary: Update a tool by ID
      description: Update a specific tool by ID
      operationId: updateTool
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
        description: Tool ID
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Tool'
        required: true
      responses:
        '200':
          description: Tool updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tool'
        '400':
          description: Invalid ID or request body provided
        '404':
          description: Tool not found
        '500':
          description: Internal server error
    delete:
      tags:
      - tools
      security:
      - bearerAuth: []
      summary: Delete a tool by ID
      description: Delete a specific tool by ID
      operationId: deleteTool
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
        description: Tool ID
      responses:
        '200':
          description: Tool deleted successfully
        '400':
          description: Invalid ID provided
        '404':
          description: Tool not found
        '500':
          description: Internal server error
components:
  schemas:
    Tool:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the tool
          example: cfd531e0-82fc-11e9-bc42-526af7764f64
        name:
          type: string
          description: Name of the tool
          example: date_time_tool
        description:
          type: string
          description: Description of the tool
          example: A tool used for date and time operations
        color:
          type: string
          description: Color associated with the tool
          example: '#FF5733'
        iconSrc:
          type:
          - string
          - 'null'
          description: Source URL for the tool's icon
          example: https://example.com/icons/date.png
        schema:
          type:
          - string
          - 'null'
          description: JSON schema associated with the tool
        func:
          type:
          - string
          - 'null'
          description: Functionality description or code associated with the tool
        createdDate:
          type: string
          format: date-time
          description: Date and time when the tool was created
          example: '2024-08-24T14:15:22Z'
        updatedDate:
          type: string
          format: date-time
          description: Date and time when the tool was last updated
          example: '2024-08-24T14:15:22Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT