v34

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-09194386949.7 KB
Beta
Batch Processing

Get Item Processing Results

Get all processing results for a specific item.

Returns the complete processing history for an item including what operations were performed, parameters used, and where outputs are stored. Optionally filter by job_type.

get/api/v1/beta/batch-processing/items/{item_id}/processing-results

Path parameters

item_idstring required

Query parameters

job_type'parse' | 'extract' | 'classify'

Type of batch processing operation.

Filter results by job type

project_idstring uuid nullable
organization_idstring uuid nullable

Cookies

sessionstring nullable

Response

Successful Response

item_idstring required

ID of the source item

item_namestring required

Name of the source item

Example response

{
  "processing_results": [
    {
      "job_config": {
        "parameters": {
          "webhook_configurations": [
            {
              "webhook_url": "https://example.com/webhooks/llamacloud",
              "webhook_headers": {
                "Authorization": "Bearer sk-..."
              },
              "webhook_events": [
                "parse.success",
                "parse.error"
              ],
              "webhook_output_format": "json"
            }
          ]
        }
      }
    }
  ]
}