Skip to content

API Reference

Reference conventions

  • Availability gates: a route or task labeled with a property is registered only when that server property is enabled. Scheduler endpoints require the scheduler condition; AI task and Agent capabilities require their respective AI runtime configuration.
  • Deprecation: deprecated routes and task types are retained only for migration guidance. Use the documented replacement for new integrations.
  • Definitions vs. runtime: workflow/task definitions are reusable blueprints; workflow/task objects are individual execution records. See Schemas and its direct source-schema links for the field-level contract.

Base URL

All API endpoints are relative to your Conductor server's base URL:

http://localhost:8080/api/

For example, to list all workflow definitions:

curl http://localhost:8080/api/metadata/workflow

If your Conductor server runs on a different host or port, replace localhost:8080 accordingly.

Authentication

Conductor OSS does not require authentication by default. All API endpoints are open. If you need to secure your Conductor instance, you can add authentication via a reverse proxy (e.g., Nginx, Envoy) or by implementing a custom security filter in Spring Boot.

Content Type

All request and response bodies use JSON. Set the following headers on requests with a body:

Content-Type: application/json

A few endpoints return plain text (e.g., workflow ID on start). These are noted in their documentation.

Common Response Codes

Status Code Description
200 OK Request succeeded. Response body contains the result.
204 No Content Request succeeded but there is no response body (e.g., poll with no tasks available).
400 Bad Request Invalid request — check your request body or parameters.
404 Not Found The requested resource (workflow, task, definition) does not exist.
409 Conflict Conflict with current state (e.g., trying to resume a workflow that is not paused).
500 Internal Server Error Server-side error. Check Conductor server logs.

Error Response Format

When an error occurs, the response body contains:

{
  "status": 400,
  "message": "Workflow definition is not valid",
  "instance": "conductor-server",
  "retryable": false
}

Quick Start

Register a workflow definition, start it, and check its status — all in three commands:

# 1. Register a workflow definition
curl -X POST 'http://localhost:8080/api/metadata/workflow' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "hello_workflow",
    "version": 1,
    "tasks": [
      {
        "name": "hello_task",
        "taskReferenceName": "hello_ref",
        "type": "HTTP",
        "inputParameters": {
          "http_request": {
            "uri": "https://jsonplaceholder.typicode.com/posts/1",
            "method": "GET"
          }
        }
      }
    ],
    "schemaVersion": 2
  }'

# 2. Start a workflow execution
WORKFLOW_ID=$(curl -s -X POST 'http://localhost:8080/api/workflow/hello_workflow' \
  -H 'Content-Type: application/json' \
  -d '{}')
echo "Started workflow: $WORKFLOW_ID"

# 3. Check workflow status
curl "http://localhost:8080/api/workflow/$WORKFLOW_ID"

API Sections

Section Base Path Description
Metadata /api/metadata Register, update, validate, and delete workflow and task definitions
Start Workflow /api/workflow Start workflows asynchronously, synchronously, or with dynamic definitions
Workflow /api/workflow Manage executions: get status, pause, resume, retry, restart, terminate, search
Task /api/tasks Poll for tasks, update results, manage queues, view logs, search
Bulk Operations /api/workflow/bulk Pause, resume, restart, retry, terminate, or remove workflows in batch
Event Handlers /api/event Create and manage event-driven workflow triggers
Files /api/files Create workflow-scoped file handles and exchange signed upload/download URLs; requires file storage
Task Domains Route tasks to specific worker pools at runtime
Scheduler /api/scheduler Create, search, pause, resume, and bulk-manage schedules; requires conductor.scheduler.enabled=true
Conductor Agents /api/agent Compile, deploy, start, observe, and control SDK-authored durable agents; requires conductor.integrations.ai.enabled=true

Swagger UI

The Swagger UI at http://localhost:8080/swagger-ui/index.html provides an interactive API explorer where you can try endpoints directly from your browser.

SDKs

For programmatic access, use one of the official Conductor SDKs which wrap these REST APIs with language-native interfaces for Java, Python, Go, JavaScript, C#, Ruby, and Rust.