Structify workflow API

The workflow API from Structify — 3 operation(s) for workflow.

Operations 3

GET /sessions/node/{node_id}/logs Get terminal logs for a workflow node #
POST /workflow/run #
POST /workflow/stop #

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/structify-workflow-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

structify-workflow-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: team@structify.ai
    name: Structify Team
  description: Every enterprise's data team.
  license:
    name: Discuss directly with founders for license.
    url: https://structify.ai
  title: Structify account Workflow API
  version: 0.1.0
servers:
- description: Production server
  url: https://api.structify.ai
- description: Local server
  url: http://localhost:8080
security:
- api_key: []
- session_token: []
tags:
- name: workflow
paths:
  /sessions/node/{node_id}/logs:
    get:
      operationId: get_node_logs
      parameters:
      - description: Workflow session node ID
        in: path
        name: node_id
        required: true
        schema:
          $ref: '#/components/schemas/WorkflowSessionNodeId'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetNodeLogsResponse'
          description: Node logs retrieved successfully
        '404':
          description: Node not found
        '500':
          description: Internal server error
      summary: Get terminal logs for a workflow node
      tags:
      - workflow
  /workflow/run:
    post:
      operationId: run_workflow
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunWorkflowRequest'
        required: true
      responses:
        '200':
          description: Successfully started workflow
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Invalid request
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Forbidden - user does not have write access to chat session
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Chat session not found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
      security:
      - api_key: []
      - session_token: []
      tags:
      - workflow
  /workflow/stop:
    post:
      operationId: stop_workflow
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StopWorkflowRequest'
        required: true
      responses:
        '200':
          description: Successfully stopped workflow
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Invalid request
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Forbidden - user does not have write access to workflow session
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Workflow session not found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
      security:
      - api_key: []
      - session_token: []
      tags:
      - workflow
components:
  schemas:
    WorkflowNodeLogId:
      format: uuid
      type: string
    WorkflowSessionId:
      format: uuid
      type: string
    StopWorkflowRequest:
      properties:
        workflow_session_id:
          $ref: '#/components/schemas/WorkflowSessionId'
      required:
      - workflow_session_id
      type: object
    WorkflowSessionNodeId:
      format: uuid
      type: string
    ErrorResponse:
      description: Standard error response
      properties:
        error:
          type: string
      required:
      - error
      type: object
    ChatSessionId:
      format: uuid
      type: string
    RunWorkflowRequest:
      properties:
        chat_session_id:
          $ref: '#/components/schemas/ChatSessionId'
        edited_node_name:
          type:
          - string
          - 'null'
        use_node_cache:
          type: boolean
      required:
      - chat_session_id
      - use_node_cache
      type: object
    WorkflowNodeLog:
      properties:
        content:
          type: string
        id:
          $ref: '#/components/schemas/WorkflowNodeLogId'
        is_stderr:
          type: boolean
        node_id:
          $ref: '#/components/schemas/WorkflowSessionNodeId'
        timestamp:
          format: date-time
          type: string
      required:
      - id
      - node_id
      - timestamp
      - is_stderr
      - content
      type: object
    GetNodeLogsResponse:
      properties:
        logs:
          items:
            $ref: '#/components/schemas/WorkflowNodeLog'
          type: array
      required:
      - logs
      type: object
  securitySchemes:
    api_key:
      in: header
      name: api_key
      type: apiKey
    session_token:
      scheme: bearer
      type: http