Skip to main content

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.

A workflow job is created automatically whenever: To use the Unstructured API’s workflow operations to manage jobs, do the following:
TaskPython functioncurl
Get a list of available jobsjobs.list_jobsGET /jobs
Get basic information about a jobjobs.get_jobGET /jobs/<job-id>
Get information about a job’s current processing statusjobs.get_job_detailsGET /jobs/<job-id>/details
Get the list of any failed files for a job and why those files failedjobs.get_failed_filesGET /jobs/<job-id>/failed-files
Run a workflow that takes one or more local files only as input, and the workflow exists only for the duration of that job’s run (known as an on-demand job)POST /jobs/
Cancel a running jobjobs.cancel_jobPOST /jobs/<job-id>/cancel
A workflow job is created automatically whenever: