Dojo Flows API

The Flows API from Dojo — 2 operation(s) for flows.

Operations 3

GET /flows
POST /flows
GET /flows/{flowId}

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/dojo-flows-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

dojo-flows-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EPOS Tester Flows API
  version: 1.0.0
tags:
- name: Flows
paths:
  /flows:
    get:
      tags:
      - Flows
      responses:
        '200':
          description: All the available flows to be started
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlowDescription'
    post:
      tags:
      - Flows
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunFlowRequest'
      responses:
        '200':
          description: The flow ID of the started flow
          content:
            application/json:
              schema:
                pattern: ^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$
                type: string
                description: UUID uniquely identifying a flow
                format: uuid
  /flows/{flowId}:
    get:
      tags:
      - Flows
      parameters:
      - name: flowId
        in: path
        required: true
        schema:
          pattern: ^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$
          type: string
          description: UUID uniquely identifying a flow
          format: uuid
      responses:
        '200':
          description: The result of the flow
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FlowResult'
components:
  schemas:
    FlowDescription:
      type: object
      properties:
        name:
          type: string
        params:
          type: array
          items:
            $ref: '#/components/schemas/Param'
      required:
      - name
    Param:
      type: object
      properties:
        name:
          type: string
        type:
          type: string
        required:
          type: boolean
        description:
          type: string
        default:
          type: string
      required:
      - name
      - type
      - required
      - description
    RunFlowRequest:
      type: object
      properties:
        flow:
          type: string
          description: the name of the flow as returned by the /flows endpoint
        params:
          type: object
      required:
      - flow
    StepResult:
      type: object
      properties:
        name:
          type: string
        status:
          $ref: '#/components/schemas/Status'
        additionalInformation:
          type: array
          items:
            type: string
        startedAt:
          format: date-time
          type: string
          example: '2024-03-30T12:00:00Z'
        finishedAt:
          format: date-time
          type: string
          example: '2024-03-30T12:00:00Z'
      required:
      - name
      - status
      - startedAt
    FlowResult:
      type: object
      properties:
        flowID:
          pattern: ^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$
          type: string
          description: UUID uniquely identifying a flow
          format: uuid
        flowName:
          type: string
        status:
          $ref: '#/components/schemas/Status'
        startedAt:
          format: date-time
          type: string
          example: '2024-03-30T12:00:00Z'
        finishedAt:
          format: date-time
          type: string
          example: '2024-03-30T12:00:00Z'
        steps:
          type: array
          items:
            $ref: '#/components/schemas/StepResult'
      required:
      - flowID
      - flowName
      - status
      - startedAt
    Status:
      type: string
      enum:
      - SUCCESS
      - FAILURE
      - TIMED_OUT
      - IN_PROGRESS