Skip to content

List workflows

GET
/api/v1/workflows
curl --request GET \
--url 'https://dashboard.justcrawl.io/api/v1/workflows?status=draft' \
--header 'Authorization: Bearer <token>'

List all workflows (latest version per logical workflow) for the current organization.

status
string
Allowed values: draft published

Filter workflows by status.

domain
string

Narrow to workflows routed to this domain (route=“domain:X” or default ”*”); domain-specific routes sorted first.

An array of workflows.

Media type application/json
Array<object>
object
workflowId
string format: uuid
name
string
status
string
Allowed values: draft published
version
integer
route
string
nullable
dag
object
nodes
required
Array<object>
object
id
required
string
type
required
string
Allowed values: entry service split result failed
config
object
edges
required
Array<object>
object
id
required
string
from
required
string
to
required
string
type
required
string
Allowed values: default success fail split
costPerThousand
number
nullable
smart
object
strategy
string
Allowed values: success cost reliability
mode
string
Allowed values: auto suggest
domain
string
nullable
hasPendingSuggestion
boolean
createdAt
string format: date-time
Example
[
{
"status": "draft",
"dag": {
"nodes": [
{
"type": "entry"
}
],
"edges": [
{
"type": "default"
}
]
},
"smart": {
"strategy": "success",
"mode": "auto"
}
}
]