Frontline Flow Variables API

Manage variables scoped to an agent's flow

Operations 7

GET /public/v1/agents/{agentId}/variables List agent variables #
POST /public/v1/agents/{agentId}/variables Create agent variable #
GET /public/v1/agents/{agentId}/variables/all List all agent variables #
GET /public/v1/agents/{agentId}/variables/check-name Check agent variable name #
GET /public/v1/agents/{agentId}/variables/{variableId} Get agent variable #
PUT /public/v1/agents/{agentId}/variables/{variableId} Update agent variable #
DELETE /public/v1/agents/{agentId}/variables/{variableId} Delete agent variable #

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/frontline-flow-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 email required.

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

OpenAPI Specification

frontline-flow-variables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Public Flow Variables API
  version: 1.0.0
  description: 'Public API for accessing agents, flows, and analytics.


    ## Authentication


    The Public API supports two API key types. Pass the key as a Bearer token:


    ```

    Authorization: Bearer <YOUR_API_KEY>

    ```


    ### Account API key (GENERAL)


    Account-level key that acts on behalf of the entire account. Required for account-level endpoints unless noted otherwise.


    ### User API key (USER)


    User-level key tied to a specific user. Required for write operations and user-owned resources. **Also accepted on all account-level endpoints.**


    Each operation documents which key type(s) it accepts in its **Security** section.'
  license:
    name: Proprietary
    url: https://www.getfrontline.ai/terms-and-conditions
servers:
- url: https://prod-api.getfrontline.ai
tags:
- name: Flow Variables
  description: Manage variables scoped to an agent's flow
paths:
  /public/v1/agents/{agentId}/variables:
    get:
      summary: List agent variables
      operationId: listAgentVariables
      description: Lists variables for an agent. Requires a USER API key.
      security:
      - userApiKey: []
      tags:
      - Flow Variables
      parameters:
      - schema:
          type: string
          example: uuid-xxxx-xxxx
        required: true
        name: agentId
        in: path
      - schema:
          type: string
          example: customer
        required: false
        name: filterText
        in: query
      - schema:
          anyOf:
          - type: boolean
          - type: string
          example: false
        required: false
        name: isDefault
        in: query
      responses:
        '200':
          description: Paginated variables
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: number
                  pageSize:
                    type: number
                  pageNum:
                    type: number
                  totalPages:
                    type: number
                  cursor:
                    type: number
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Variable'
                  paginationType:
                    type: string
                    enum:
                    - offset
                    - cursor
                    default: offset
                  nextCursor:
                    anyOf:
                    - type: string
                    - type: number
                    - {}
                required:
                - pageSize
                - results
    post:
      summary: Create agent variable
      operationId: createAgentVariable
      description: Creates a variable for an agent. Requires a USER API key.
      security:
      - userApiKey: []
      tags:
      - Flow Variables
      parameters:
      - schema:
          type: string
          example: uuid-xxxx-xxxx
        required: true
        name: agentId
        in: path
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicFlowVariableCreateInput'
      responses:
        '201':
          description: Created variable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Variable'
  /public/v1/agents/{agentId}/variables/all:
    get:
      summary: List all agent variables
      operationId: listAllAgentVariables
      description: Lists all agent variables including defaults. Requires a USER API key.
      security:
      - userApiKey: []
      tags:
      - Flow Variables
      parameters:
      - schema:
          type: string
          example: uuid-xxxx-xxxx
        required: true
        name: agentId
        in: path
      responses:
        '200':
          description: Variables
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Variable'
  /public/v1/agents/{agentId}/variables/check-name:
    get:
      summary: Check agent variable name
      operationId: checkAgentVariableName
      description: Checks whether a variable name exists for an agent. Requires a USER API key.
      security:
      - userApiKey: []
      tags:
      - Flow Variables
      parameters:
      - schema:
          type: string
          example: uuid-xxxx-xxxx
        required: true
        name: agentId
        in: path
      - schema:
          type: string
          minLength: 1
          example: customer_name
        required: true
        name: name
        in: query
      responses:
        '200':
          description: Name existence
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VariableCheckName'
  /public/v1/agents/{agentId}/variables/{variableId}:
    get:
      summary: Get agent variable
      operationId: getAgentVariable
      description: Manages a single agent variable. Requires a USER API key.
      security:
      - userApiKey: []
      tags:
      - Flow Variables
      parameters:
      - schema:
          type: string
          example: uuid-xxxx-xxxx
        required: true
        name: agentId
        in: path
      - schema:
          type:
          - number
          - 'null'
          example: 123
        required: false
        name: variableId
        in: path
      responses:
        '200':
          description: Variable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Variable'
    put:
      summary: Update agent variable
      operationId: updateAgentVariable
      description: Manages a single agent variable. Requires a USER API key.
      security:
      - userApiKey: []
      tags:
      - Flow Variables
      parameters:
      - schema:
          type: string
          example: uuid-xxxx-xxxx
        required: true
        name: agentId
        in: path
      - schema:
          type:
          - number
          - 'null'
          example: 123
        required: false
        name: variableId
        in: path
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicVariableUpdateInput'
      responses:
        '200':
          description: Variable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Variable'
    delete:
      summary: Delete agent variable
      operationId: deleteAgentVariable
      description: Manages a single agent variable. Requires a USER API key.
      security:
      - userApiKey: []
      tags:
      - Flow Variables
      parameters:
      - schema:
          type: string
          example: uuid-xxxx-xxxx
        required: true
        name: agentId
        in: path
      - schema:
          type:
          - number
          - 'null'
          example: 123
        required: false
        name: variableId
        in: path
      responses:
        '204':
          description: Variable deleted
components:
  schemas:
    PublicFlowVariableCreateInput:
      type: object
      properties:
        name:
          type: string
          minLength: 1
          example: customer_name
        description:
          type:
          - string
          - 'null'
          example: Customer name captured during the conversation
        pattern:
          type:
          - string
          - 'null'
          example: ^[A-Za-z ]+$
      required:
      - name
    VariableCheckName:
      type: object
      properties:
        exists:
          type: boolean
          example: false
      required:
      - exists
    Variable:
      type: object
      properties:
        id:
          type: number
          example: 123
        name:
          type: string
          example: customer_name
        description:
          type:
          - string
          - 'null'
        status:
          type: string
          enum:
          - ACTIVE
          - DELETED
          example: ACTIVE
        createdAt:
          type: string
          example: '2024-01-01T12:00:00Z'
        updatedAt:
          type: string
          example: '2024-01-01T12:00:00Z'
        assistantId:
          type:
          - string
          - 'null'
        automationId:
          type:
          - number
          - 'null'
        pattern:
          type:
          - string
          - 'null'
        defaultValue:
          type:
          - string
          - 'null'
        isDefault:
          type: boolean
          example: false
      required:
      - id
      - name
      - status
      - createdAt
      - updatedAt
      - isDefault
    PublicVariableUpdateInput:
      type: object
      properties:
        name:
          type: string
          minLength: 1
          example: customer_name
        description:
          type:
          - string
          - 'null'
          example: Customer name captured during the conversation
        pattern:
          type:
          - string
          - 'null'
          example: ^[A-Za-z ]+$
      required:
      - name
  securitySchemes:
    accountApiKey:
      type: http
      scheme: bearer
      bearerFormat: Account API Key
      description: Account-level API key (GENERAL). Authenticates on behalf of the entire account. Use for read-only and analytics endpoints marked as account-level in this documentation.
    userApiKey:
      type: http
      scheme: bearer
      bearerFormat: User API Key
      description: User-level API key (USER). Authenticates on behalf of a specific user. Required for write operations and user-owned resources. Also accepted on all account-level endpoints.
x-tagGroups:
- name: Agent Builder
  tags:
  - Agent Builder
  - Flows
  - Flow Variables
  - Intents
  - Agents
  - Agent Playbooks
- name: Workflows
  tags:
  - Workflows
  - Workflow Variables
- name: Objects
  tags:
  - Objects
  - Object fields
  - Object options
  - Object record types
  - Object views
  - Object relations
  - Object rows
  - Object aggregations
  - Object activities
  - Object tasks
  - Object files
  - Object export
- name: Tables
  tags:
  - Tables
  - Table fields
  - Table options
  - Table rows
  - Table aggregations
  - Table activities
  - Table tasks
  - Table files
  - Table export
- name: Channels
  tags:
  - Channels
- name: Integrations
  tags:
  - Custom Tools
  - Incoming Webhooks
  - Account Integrations
  - Agent Channels
  - Integration Resources
- name: Knowledge
  tags:
  - Knowledge Bases
- name: Core
  tags:
  - Account
  - AI Models
  - Billing
  - Users
  - User Tasks
  - Guidance