Activepieces Flow Runs API

Access execution history and run details

Operations 2

GET /flow-runs Activepieces List Flow Runs #
GET /flow-runs/{id} Activepieces Get Flow Run #

Documentation

Specifications

Schemas & Data

Other Resources

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/activepieces-flow-runs-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

activepieces-flow-runs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Activepieces Connections Flow Runs API
  version: 1.0.0
  description: REST API for Activepieces, the open-source no-code automation platform. Manage flows, connections, projects, users, and workflow executions programmatically.
  contact:
    name: Activepieces Support
    url: https://www.activepieces.com/docs/
  x-generated-from: documentation
servers:
- url: https://cloud.activepieces.com/api/v1
  description: Activepieces Cloud API
- url: https://{yourDomain}/api/v1
  description: Self-hosted Activepieces instance
  variables:
    yourDomain:
      default: localhost:3000
security:
- BearerAuth: []
tags:
- name: Flow Runs
  description: Access execution history and run details
paths:
  /flow-runs:
    get:
      operationId: listFlowRuns
      summary: Activepieces List Flow Runs
      description: List execution history for flows
      tags:
      - Flow Runs
      parameters:
      - name: projectId
        in: query
        required: true
        schema:
          type: string
        description: Project ID
      - name: flowId
        in: query
        schema:
          type: string
        description: Filter by flow ID
      - name: status
        in: query
        schema:
          type: string
          enum:
          - RUNNING
          - SUCCEEDED
          - FAILED
          - TIMEOUT
          - STOPPED
        description: Filter by run status
      - name: limit
        in: query
        schema:
          type: integer
        description: Number of results
      - name: cursor
        in: query
        schema:
          type: string
        description: Pagination cursor
      responses:
        '200':
          description: Paginated list of flow runs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlowRunList'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /flow-runs/{id}:
    get:
      operationId: getFlowRun
      summary: Activepieces Get Flow Run
      description: Retrieve details of a specific flow execution run
      tags:
      - Flow Runs
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
        description: Flow run ID
      responses:
        '200':
          description: Flow run details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlowRun'
        '404':
          description: Flow run not found
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    FlowRun:
      type: object
      description: A flow execution run
      properties:
        id:
          type: string
          description: Flow run ID
          example: run-abc123
        created:
          type: string
          format: date-time
          description: Run creation timestamp
        updated:
          type: string
          format: date-time
          description: Last update timestamp
        projectId:
          type: string
          description: Project ID
        flowId:
          type: string
          description: Flow ID
        status:
          type: string
          enum:
          - RUNNING
          - SUCCEEDED
          - FAILED
          - TIMEOUT
          - STOPPED
          description: Run status
          example: SUCCEEDED
        startTime:
          type: string
          format: date-time
          description: Run start time
        finishTime:
          type: string
          format: date-time
          description: Run finish time
        duration:
          type: integer
          description: Execution duration in milliseconds
          example: 1234
    FlowRunList:
      type: object
      description: Paginated list of flow runs
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/FlowRun'
        next:
          type: string
          nullable: true
        previous:
          type: string
          nullable: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key from the Activepieces admin console, passed as a Bearer token