For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog in
ProductAPI ReferenceChangelogModel Versioning
ProductAPI ReferenceChangelogModel Versioning
    • Authentication
    • API Versioning
  • Workflow Endpoints
    • Run Workflow
    • Workflow Run
    • List Workflow Runs
    • Update Workflow Run
    • Create Workflow
    • Batch Run Workflow
    • Correct Workflow Run (Deprecated)
  • Processor Endpoints
    • Run Processor
    • Get Processor Run
    • Batch Processor Run
    • Create Processor
    • Update Processor
    • Publish Processor Version
    • Processor Version
    • List Processor Versions
  • Parse Endpoints
    • Parse File
  • File Endpoints
    • Upload File
    • Get File
    • List Files
    • Create File (Deprecated)
  • Evaluation Set Endpoints
    • Create Evaluation Set
    • Create Evaluation Set Item
    • Update Evaluation Set Item
    • Bulk Create Evaluation Set Item
  • Objects
    • Block
    • Evaluation Set
    • Evaluation Set Item
    • File
    • Processor
    • Processor Run
    • Batch Processor Run
    • Processor Version
    • Workflow
    • Workflow Run
    • Workflow Run Summary
  • Guides
    • Processor Configs
    • Output Types
    • Bounding Boxes
    • Supported File Types
    • Rate Limits
    • User Roles and Permissions
  • Webhooks
    • Configuration
    • Events
LogoLogo
Book a demoLog in
Processor Endpoints

Get Processor Version

Retrieve a specific version of a processor in Extend.
1curl --request GET \
2 --url https://api-prod.extend.app/processors/:ProcessorId/versions/:processorVersionId \
3 --header 'Authorization: Bearer <token>'
Example Success Response
1{
2 "success": true,
3 "version": {
4 "object": "document_processor_version",
5 "id": "processor_version_5678",
6 "processorId": "processor_1234",
7 "processorType": "EXTRACT",
8 "description": "Updated extraction rules for invoice processing",
9 "version": "1.2.0",
10 "config": {
11 // Config object - see “Processor configs” for details
12 },
13 "createdAt": "2024-03-01T14:00:00Z",
14 "updatedAt": "2024-03-01T14:00:00Z"
15 }
16}
Was this page helpful?
Previous

List Processor Versions

Retrieve all versions of a specific processor in Extend.
Next
Built with

This endpoint allows you to fetch a specific version of a given processor.

Path Parameters

documentProcessorId
stringRequired

The ID of the processor.

documentProcessorVersionId
stringRequired

The ID of the specific processor version to retrieve.

Response

success
boolean

A true or false value indicating whether the request was successful or not.

version
DocumentProcessorVersion

A ProcessorVersion object representing the requested version of the processor. See the ProcessorVersion object for more details on the structure.

Error Responses

success
boolean

Will be false if the request failed.

error
string

A description of the error that occurred.

Possible Errors

  • 404 Not Found: If the specified processor or version does not exist.