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

Flat public view of one workflow version. Empty optional fields are omitted from the JSON entirely.

workflow_id
string<uuid>
required

Unique workflow identifier

Example:

"50741f40-8621-4d46-8a91-dff4d873be98"

version_id
string
required

Version identifier

Example:

"v1"

slug
string
required

Workflow slug

Example:

"my-generator"

name
string
required

Public workflow name

Example:

"My Generator"

description
string
required

Public workflow description

Example:

"Generates images from text prompts"

status
enum<string>
required

Version lifecycle status

Available options:
active,
archived,
deleted
Example:

"active"

created_at
string<date-time>
required

RFC3339 timestamp when version was created

Example:

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

updated_at
string<date-time>
required

RFC3339 timestamp when version was last updated

Example:

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

thumbnail
string

Thumbnail URL. Omitted when unset.

Example:

"https://storage.googleapis.com/uploads/thumb.png"

categories
string[]

Category slugs. Omitted when empty.

Example:
definition
object

The complete workflow definition. Omitted when the version has no stored definition.

example_output
string

Example output URL. Omitted when unset.

Example:

"https://storage.googleapis.com/uploads/example.png"

Last modified on August 17, 2026