> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extend.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Batch Processor Run

> Retrieve details about a batch processor run.

This endpoint is used to retrieve details about a batch processor run, including evaluation runs.

### URL Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the batch processor run to retrieve.
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  A true or false value indicating whether the request was successful.
</ResponseField>

<ResponseField name="batchProcessorRun" type="object">
  Details about the requested batch processor run. See the [BatchProcessorRun
  object](/api-reference/objects/batch_processor_run) for more details.
</ResponseField>

<ResponseExample>
  ```json Example Response theme={null}
  {
    "success": true,
    "batchProcessorRun": {
      "object": "batch_processor_run",
      "id": "bpr_1234",
      "processorId": "dp_5678",
      "processorVersionId": "dpv_91011",
      "processorName": "Processor Name",
      "metrics": {
          // Metrics object - see the BatchProcessorRun object for details
      },
      "status": "PROCESSED",
      "source": "EVAL_SET",
      "sourceId": "ev_1234",
      "runCount": 1,
      "options": {
          "fuzzyMatchFields": ["field1"],
          "excludeFields": ["field2"],
          "clearPreProcessingCache": true
      },
      "createdAt": "2023-01-01T09:41:00.000Z",
      "updatedAt": "2023-01-10T05:39:24.500Z"
    }
  }
  ```
</ResponseExample>
