Get detailed information about a specific workflow, including its full contents/definition.
Authentication: Required.
Common Use Cases:
API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_API_KEY
The username of the workflow owner
"johndoe"
The workflow name/slug
"my-image-workflow"
Successfully retrieved workflow details
Response containing a single workflow's details
The workflow details
{
"name": "my-image-workflow",
"title": "My Image Generation Workflow",
"user_nickname": "johndoe",
"created_at": "2024-01-15T10:30:00Z",
"is_public": true,
"contents": {
"nodes": {
"node_a1b2c3": {
"id": "node_a1b2c3",
"type": "model",
"app": "fal-ai/flux/dev",
"depends": [],
"input": { "prompt": "$input.prompt" },
"metadata": { "position": { "x": 300, "y": 100 } }
},
"output": {
"id": "output",
"type": "output",
"depends": ["node_a1b2c3"],
"fields": { "image": "$node_a1b2c3.images.0.url" },
"metadata": { "position": { "x": 600, "y": 100 } }
}
}
}
}