Skip to main content
GET
Get public workflow version

Path Parameters

nickname
string
required

Organization nickname (without @ prefix)

Example:

"acme-corp"

slug
string
required

Workflow slug

Example:

"my-image-generator"

versionID
string
required

Version identifier

Example:

"v1"

Response

Workflow version details

Summary information about a workflow version

version_id
string
required

Version identifier

Example:

"v1"

slug
string
required

Workflow slug (inherited from parent workflow)

Example:

"text-to-image-generator"

locked
boolean

Whether this version is locked from modifications

Example:

false

production
boolean

Whether this is a production version

Example:

true

allowed_to_share
boolean

True if version is unlisted (accessible via direct link but hidden from public listings).

Example:

false

trigger_count
integer

Number of times this specific version has been triggered

Example:

15

created_at
string<date-time>

RFC3339 timestamp when version was created

Example:

"2025-12-01T10:00:00Z"

updated_at
string<date-time>

RFC3339 timestamp when version was last updated

Example:

"2025-12-05T14:20:00Z"

status
enum<string>

Version lifecycle status

Available options:
active,
archived,
deleted
Example:

"active"

definition
object

The complete workflow definition (only included in detail responses). Contains steps, input schema, and metadata.

Last modified on July 27, 2026