Get workflow
GET
/api/v1/workflows/{id}
curl -X GET 'https://dashboard.justcrawl.io/api/v1/workflows/a47ac10b-58cc-4372-a567-0e02b2c3d479' \ -H 'Authorization: Bearer $JUSTCRAWL_API_KEY'import os, requestswid = 'a47ac10b-58cc-4372-a567-0e02b2c3d479'r = requests.get( f'https://dashboard.justcrawl.io/api/v1/workflows/{wid}', headers={'Authorization': f'Bearer {os.environ["JUSTCRAWL_API_KEY"]}'},)r.raise_for_status()workflow = r.json()const wid = 'a47ac10b-58cc-4372-a567-0e02b2c3d479';const res = await fetch(`https://dashboard.justcrawl.io/api/v1/workflows/${wid}`, { headers: { Authorization: `Bearer ${process.env.JUSTCRAWL_API_KEY}` },});if (!res.ok) throw new Error(`${res.status} ${await res.text()}`);const workflow = await res.json();Get a workflow (latest version) with its DAG by ID. Returns the full DAG node + edge graph for editor consumption.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
The workflow ID.
Responses
Section titled “ Responses ”The requested workflow with its DAG.
Media type application/json
object
workflowId
string format: uuid
name
string
status
string
version
integer
route
string
dag
object
nodes
required
Array<object>
object
id
required
string
type
required
string
config
object
edges
required
Array<object>
object
id
required
string
from
required
string
to
required
string
type
required
string
costPerThousand
number
smart
object
strategy
string
mode
string
domain
string
hasPendingSuggestion
boolean
createdAt
string format: date-time
Example
{ "status": "draft", "dag": { "nodes": [ { "type": "entry" } ], "edges": [ { "type": "default" } ] }, "smart": { "strategy": "success", "mode": "auto" }}Missing or invalid authentication token
Media type application/json
object
error
string
Example
{ "error": "Missing or invalid authentication token"}Insufficient permissions for this operation
Media type application/json
object
error
string
Example
{ "error": "No organization. Complete onboarding first."}Resource not found
Media type application/json
object
error
string
Example
{ "error": "Workflow not found"}Unexpected server error. Logs and PostHog $exception capture
Media type application/json
object
error
string
Example
{ "error": "Something went wrong"}