Skip to main content
GET
/
v1
/
workflows
/
{workflowID}
/
active-versions
Get active workflow versions
curl --request GET \
  --url https://api.strait.dev/v1/workflows/{workflowID}/active-versions \
  --header 'Authorization: Bearer <token>'
{
  "versions": [
    {
      "paused": 123,
      "pending": 123,
      "running": 123,
      "total": 123,
      "version": 123,
      "version_id": "<string>"
    }
  ],
  "workflow_id": "<string>",
  "$schema": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.strait.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Path Parameters

workflowID
string
required

Response

OK

versions
object[] | null
required
workflow_id
string
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://api.strait.dev/schemas/ActiveVersionsResponseBody.json"