Flowise variables API

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

Operations 4

POST /variables Create a new variable #
GET /variables List all variables #
PUT /variables/{id} Update a variable by ID #
DELETE /variables/{id} Delete a variable 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-variables-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-variables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flowise APIs assistants Variables 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: variables
paths:
  /variables:
    post:
      tags:
      - variables
      security:
      - bearerAuth: []
      operationId: createVariable
      summary: Create a new variable
      description: Create a new variable
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Variable'
        required: true
      responses:
        '200':
          description: Variable created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Variable'
        '400':
          description: Invalid request body
        '422':
          description: Validation error
        '500':
          description: Internal server error
    get:
      tags:
      - variables
      security:
      - bearerAuth: []
      summary: List all variables
      description: Retrieve a list of all variables
      operationId: getAllVariables
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Variable'
        '500':
          description: Internal server error
  /variables/{id}:
    put:
      tags:
      - variables
      security:
      - bearerAuth: []
      summary: Update a variable by ID
      description: Update a specific variable by ID
      operationId: updateVariable
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
        description: Variable ID
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Variable'
        required: true
      responses:
        '200':
          description: Variable updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Variable'
        '400':
          description: Invalid ID or request body provided
        '404':
          description: Variable not found
        '500':
          description: Internal server error
    delete:
      tags:
      - variables
      security:
      - bearerAuth: []
      summary: Delete a variable by ID
      description: Delete a specific variable by ID
      operationId: deleteVariable
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
        description: Variable ID
      responses:
        '200':
          description: Variable deleted successfully
        '400':
          description: Invalid ID provided
        '404':
          description: Variable not found
        '500':
          description: Internal server error
components:
  schemas:
    Variable:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the variable
          example: cfd531e0-82fc-11e9-bc42-526af7764f64
        name:
          type: string
          description: Name of the variable
          example: API_KEY
        value:
          type:
          - string
          - 'null'
          description: Value of the variable
          example: my-secret-key
        type:
          type: string
          description: Type of the variable (e.g., string, number)
          example: string
        createdDate:
          type: string
          format: date-time
          description: Date and time when the variable was created
          example: '2024-08-24T14:15:22Z'
        updatedDate:
          type: string
          format: date-time
          description: Date and time when the variable was last updated
          example: '2024-08-24T14:15:22Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT