Flowise feedback API

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

Operations 3

POST /feedback Create new chat message feedback #
GET /feedback/{id} List all chat message feedbacks for a chatflow #
PUT /feedback/{id} Update chat message feedback #

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-feedback-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-feedback-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flowise APIs assistants Feedback 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: feedback
paths:
  /feedback:
    post:
      tags:
      - feedback
      security:
      - bearerAuth: []
      operationId: createChatMessageFeedbackForChatflow
      summary: Create new chat message feedback
      description: Create new feedback for a specific chat flow.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChatMessageFeedback'
        required: true
      responses:
        '200':
          description: Feedback successfully created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatMessageFeedback'
        '400':
          description: Invalid input provided
        '500':
          description: Internal server error
  /feedback/{id}:
    get:
      tags:
      - feedback
      security:
      - bearerAuth: []
      summary: List all chat message feedbacks for a chatflow
      description: Retrieve all feedbacks for a chatflow
      operationId: getAllChatMessageFeedback
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
        description: Chatflow ID
      - in: query
        name: chatId
        schema:
          type: string
        description: Chat ID to filter feedbacks (optional)
      - in: query
        name: sortOrder
        schema:
          type: string
          enum:
          - asc
          - desc
          default: asc
        description: Sort order of feedbacks (optional)
      - in: query
        name: startDate
        schema:
          type: string
          format: date-time
        description: Filter feedbacks starting from this date (optional)
      - in: query
        name: endDate
        schema:
          type: string
          format: date-time
        description: Filter feedbacks up to this date (optional)
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ChatMessageFeedback'
        '500':
          description: Internal server error
    put:
      tags:
      - feedback
      security:
      - bearerAuth: []
      summary: Update chat message feedback
      description: Update a specific feedback
      operationId: updateChatMessageFeedbackForChatflow
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
        description: Chat Message Feedback ID
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChatMessageFeedback'
      responses:
        '200':
          description: Feedback successfully updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatMessageFeedback'
        '400':
          description: Invalid input provided
        '404':
          description: Feedback with the specified ID was not found
        '500':
          description: Internal server error
components:
  schemas:
    ChatMessageFeedback:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the feedback
        chatflowid:
          type: string
          format: uuid
          description: Identifier for the chat flow
        chatId:
          type: string
          description: Identifier for the chat
        messageId:
          type: string
          format: uuid
          description: Identifier for the message
        rating:
          type: string
          enum:
          - THUMBS_UP
          - THUMBS_DOWN
          description: Rating for the message
        content:
          type: string
          description: Feedback content
        createdDate:
          type: string
          format: date-time
          description: Date and time when the feedback was created
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT