Kore.ai Workflows API

The Workflows API from Kore.ai — 4 operation(s) for workflows.

Operations 4

POST /api/v1/project/{projectSlug}/{env}/workflow/{workflowSlug}/invoke Invoke a deployed workflow #
POST /api/v1/workflows/{workflowId}/execute Execute a workflow by id #
GET /api/v1/workflows/{workflowId}/executions/{executionId} Get async workflow execution status #
POST /api/v1/workflows/{workflowId}/versions/{version}/execute Execute a pinned workflow version #

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/koreai-workflows-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

koreai-workflows-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Runtime API for workflow/chat/deployment/session execution.
  title: ABL Runtime API - public/ Workflows API
  version: 1.0.0
  x-generated: 'do not edit; source: route contracts'
tags:
- name: Workflows
paths:
  /api/v1/project/{projectSlug}/{env}/workflow/{workflowSlug}/invoke:
    post:
      description: Deployment-scoped workflow invocation. `?mode=sync` (default) returns the result inline; `async`/`async_push` return an executionId or push acknowledgement.
      operationId: runtime.workflow.invoke
      parameters:
      - description: Project slug
        in: path
        name: projectSlug
        required: true
        schema:
          description: Project slug
          type: string
      - description: Environment tier
        in: path
        name: env
        required: true
        schema:
          description: Environment tier
          enum:
          - dev
          - staging
          - production
          type: string
      - description: Deployed workflow slug
        in: path
        name: workflowSlug
        required: true
        schema:
          description: Deployed workflow slug
          type: string
      - in: query
        name: mode
        required: false
        schema:
          enum:
          - sync
          - async
          - async_push
          type: string
      requestBody:
        content:
          application/json:
            schema:
              properties:
                input:
                  additionalProperties:
                    anyOf:
                    - {}
                    - type: 'null'
                  description: Workflow trigger input
                  type: object
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    properties:
                      executionId:
                        type: string
                      result:
                        additionalProperties:
                          anyOf:
                          - {}
                          - type: 'null'
                        type: object
                      status:
                        type: string
                      workflowVersion:
                        type: string
                      workflowVersionId:
                        type: string
                    required:
                    - executionId
                    - status
                    type: object
                  success:
                    enum:
                    - true
                    type: boolean
                required:
                - success
                - data
                type: object
          description: Success
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
      security:
      - ApiKeyAuth: []
      summary: Invoke a deployed workflow
      tags:
      - Workflows
  /api/v1/workflows/{workflowId}/execute:
    post:
      description: Executes the active deployed version unless `?version=` is supplied. `mode=sync` returns the result inline; `async`/`async_push` return an executionId to poll or a push acknowledgement.
      operationId: runtime.workflow.execute
      parameters:
      - description: Workflow id
        in: path
        name: workflowId
        required: true
        schema:
          description: Workflow id
          type: string
      - in: query
        name: mode
        required: false
        schema:
          default: sync
          enum:
          - sync
          - async
          - async_push
          type: string
      - in: query
        name: version
        required: false
        schema:
          minLength: 1
          type: string
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: false
              properties:
                accessToken:
                  type: string
                callbackUrl:
                  format: uri
                  type: string
                executionId:
                  format: uuid
                  type: string
                input:
                  additionalProperties:
                    anyOf:
                    - {}
                    - type: 'null'
                  default: {}
                  type: object
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    properties:
                      executionId:
                        type: string
                      resolvedVersion:
                        type: string
                      resolvedVersionId:
                        type: string
                      result:
                        additionalProperties:
                          anyOf:
                          - {}
                          - type: 'null'
                        type: object
                      status:
                        description: e.g. 'completed', 'running', 'accepted', 'failed'
                        type: string
                    required:
                    - executionId
                    - status
                    type: object
                  success:
                    enum:
                    - true
                    type: boolean
                required:
                - success
                - data
                type: object
          description: Success
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
      security:
      - ApiKeyAuth: []
      summary: Execute a workflow by id
      tags:
      - Workflows
  /api/v1/workflows/{workflowId}/executions/{executionId}:
    get:
      description: Poll the status/result of an asynchronous workflow execution.
      operationId: runtime.workflow.getExecution
      parameters:
      - description: Workflow id
        in: path
        name: workflowId
        required: true
        schema:
          description: Workflow id
          type: string
      - description: Execution id returned by an async execute
        in: path
        name: executionId
        required: true
        schema:
          description: Execution id returned by an async execute
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    additionalProperties:
                      anyOf:
                      - {}
                      - type: 'null'
                    description: Engine execution record (status, result, timestamps)
                    type: object
                  success:
                    enum:
                    - true
                    type: boolean
                required:
                - success
                - data
                type: object
          description: Success
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
      security:
      - ApiKeyAuth: []
      summary: Get async workflow execution status
      tags:
      - Workflows
  /api/v1/workflows/{workflowId}/versions/{version}/execute:
    post:
      description: Path-segment version pinning. The `{version}` segment wins over any `?version=`.
      operationId: runtime.workflow.executeVersion
      parameters:
      - description: Workflow id
        in: path
        name: workflowId
        required: true
        schema:
          description: Workflow id
          type: string
      - description: Published version, e.g. v0.2.0
        in: path
        name: version
        required: true
        schema:
          description: Published version, e.g. v0.2.0
          type: string
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: false
              properties:
                accessToken:
                  type: string
                callbackUrl:
                  format: uri
                  type: string
                executionId:
                  format: uuid
                  type: string
                input:
                  additionalProperties:
                    anyOf:
                    - {}
                    - type: 'null'
                  default: {}
                  type: object
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    properties:
                      executionId:
                        type: string
                      resolvedVersion:
                        type: string
                      resolvedVersionId:
                        type: string
                      result:
                        additionalProperties:
                          anyOf:
                          - {}
                          - type: 'null'
                        type: object
                      status:
                        description: e.g. 'completed', 'running', 'accepted', 'failed'
                        type: string
                    required:
                    - executionId
                    - status
                    type: object
                  success:
                    enum:
                    - true
                    type: boolean
                required:
                - success
                - data
                type: object
          description: Success
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
      security:
      - ApiKeyAuth: []
      summary: Execute a pinned workflow version
      tags:
      - Workflows
components:
  schemas:
    ErrorResponse:
      properties:
        error:
          type: string
      required:
      - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey