Cloud PlatformAPI Reference

Cloud API Reference

The cloud platform exposes a REST API and real-time event streams so you can create, run, and monitor workflows programmatically — for CI pipelines, schedulers, or integration into your own tooling.

The canonical, complete reference lives in the dedicated API section:

Quick example

# Start a run of an existing workflow on an 8 vCPU / 64 GB worker
curl -X POST https://bionodulo.com/api/runs \
  -H "Authorization: Bearer $BIONODULO_SESSION_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "workflowId": "9f1c…", "compute": { "vcpu": 8, "ramGb": 64 } }'
{
  "success": true,
  "data": { "runId": "7a2e…", "status": "queued" }
}

Poll GET /api/runs/{runId} or stream GET /api/runs/{runId}/stream (SSE) for live progress, then fetch artifacts from GET /api/runs/{runId}/outputs.

See also