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.

This page is a brief orientation. Full details live in the dedicated API section:

Quick example

# Trigger a run of an existing workflow at the Medium tier
curl -X POST https://api.bionodulo.com/v1/workflows/wf_123/runs \
  -H "Authorization: Bearer $BIONODULO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "resourceTier": "medium" }'
{
  "id": "run_456",
  "workflowId": "wf_123",
  "status": "queued",
  "resourceTier": "medium",
  "createdAt": "2026-01-01T00:00:00Z"
}

Poll GET /v1/runs/run_456 or subscribe to WebSocket events for live progress.

See also