List Processor Runs

List runs of a Processor. A ProcessorRun represents a single execution of a processor against a file.

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Headers

x-extend-api-version"2025-04-21"OptionalDefaults to 2025-04-21

API version to use for the request. If you do not specify a version, you will either receive a 400 Bad Request or be set to a previous legacy version. See API Versioning for more details.

Query parameters

statusenumOptional
Filters processor runs by their status. If not provided, no filter is applied. The status of a processor run: * `"PENDING"` - The processor run has not started yet * `"PROCESSING"` - The processor run is in progress * `"PROCESSED"` - The processor run completed successfully * `"FAILED"` - The processor run encountered an error * `"CANCELLED"` - The processor run was cancelled
Allowed values:
processorIdstringOptional

Filters processor runs by the processor ID. If not provided, runs for all processors are returned.

Example: "dp_BMdfq_yWM3sT-ZzvCnA3f"

processorTypeenumOptional

Filters processor runs by the processor type. If not provided, runs for all processor types are returned.

Example: "EXTRACT"

Allowed values:
sourceIdstringOptional

Filters processor runs by the source ID. The source ID corresponds to the entity that created the processor run.

Example: "workflow_run_123"

sourceenumOptional
Filters processor runs by the source that created them. If not provided, runs from all sources are returned. The source of the processor run: * `"ADMIN"` - Created by admin * `"BATCH_PROCESSOR_RUN"` - Created from a batch processor run * `"PLAYGROUND"` - Created from playground * `"WORKFLOW_CONFIGURATION"` - Created from workflow configuration * `"WORKFLOW_RUN"` - Created from a workflow run * `"STUDIO"` - Created from Studio * `"API"` - Created via API
fileNameContainsstringOptional

Filters processor runs by the name of the file. Only returns processor runs where the file name contains this string.

Example: "invoice"

sortByenumOptionalDefaults to updatedAt
Sorts the processor runs by the given field.
Allowed values:
sortDirenumOptionalDefaults to desc
Sorts the processor runs in ascending or descending order. Ascending order means the earliest processor run is returned first.
Allowed values:
nextPageTokenstringOptional
The token used to fetch the page of results from a previous request. We use cursor based pagination and will return a `nextPageToken` in the response if there are more results. Note that if other parameters are changed in subsequent requests, you may receive inconsistent data. example: `"xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ="`
maxPageSizeintegerOptional>=1<=1000Defaults to 10
The maximum number of results to return in the response. You may receive less than this number if there are fewer results than the maximum.

Response

You will get a list of summaries for each processor run. These are shortened versions of the full ProcessorRun object.

To get the full object, use the Get ProcessorRun endpoint.

successboolean
processorRunslist of objects
nextPageTokenstring or null
The token used to fetch the page of results from a previous request. We use cursor based pagination and will return a `nextPageToken` in the response if there are more results. Note that if other parameters are changed in subsequent requests, you may receive inconsistent data. example: `"xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ="`

Errors