Skip to main content
GET
/
api
/
v1
/
workflows
/
{workflow_id}
curl --request GET \
  --url "${UNSTRUCTURED_API_URL}/api/v1/workflows/f0a1b2c3-4d5e-6f7a-8b9c-0d1e2f3a4b5c" \
  --header "unstructured-api-key: ${UNSTRUCTURED_API_KEY}"
{
  "id": "f0a1b2c3-4d5e-6f7a-8b9c-0d1e2f3a4b5c",
  "name": "my-workflow",
  "workflow_type": "auto",
  "status": "active",
  "source_id": "7f3e2a1b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
  "destination_id": "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
  "schedule": "daily",
  "workflow_nodes": null,
  "template_id": null,
  "reprocess_all": false,
  "created_at": "2026-04-29T10:00:00Z",
  "updated_at": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.unstructured.io/llms.txt

Use this file to discover all available pages before exploring further.

Path parameters

workflow_id
string
required
The unique identifier of the workflow.

Response

id
string
required
Unique identifier for the workflow.
name
string
required
Workflow name.
workflow_type
string
required
Workflow type: custom or auto.
status
string
required
Workflow state: active, inactive, or paused.
created_at
string
required
ISO 8601 timestamp when the workflow was created.
source_id
string
Source connector ID.
destination_id
string
Destination connector ID.
schedule
string
Repeating run schedule.
workflow_nodes
array
Workflow processing pipeline nodes.For more information on workflow nodes, see Workflow nodes.
template_id
string
ID of the workflow template used to create this workflow.
reprocess_all
boolean
Whether all documents are reprocessed on every run.
updated_at
string
ISO 8601 timestamp when the workflow was last updated.
curl --request GET \
  --url "${UNSTRUCTURED_API_URL}/api/v1/workflows/f0a1b2c3-4d5e-6f7a-8b9c-0d1e2f3a4b5c" \
  --header "unstructured-api-key: ${UNSTRUCTURED_API_KEY}"
{
  "id": "f0a1b2c3-4d5e-6f7a-8b9c-0d1e2f3a4b5c",
  "name": "my-workflow",
  "workflow_type": "auto",
  "status": "active",
  "source_id": "7f3e2a1b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
  "destination_id": "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
  "schedule": "daily",
  "workflow_nodes": null,
  "template_id": null,
  "reprocess_all": false,
  "created_at": "2026-04-29T10:00:00Z",
  "updated_at": null
}