DocuProx SDKs

Official SDKs for Python and Node.js. Build powerful document processing applications with our easy-to-use SDK packages that enable automated document extraction and processing.

Quick Start Examples

Python

from docuprox import Docuprox

# Initialize client
client = Docuprox(api_key="your_api_key")

# Process a file
result = client.processfile("invoice.pdf", "your-template-uuid")

print(result)



Node.js

const Docuprox = require("docuprox");

const client = new Docuprox();

(async () => {
  const result = await client.processFile(
    "invoice.pdf",
    "your-template-uuid"
  );

  console.log(result);
})();

SDK Features

Easy Integration

Simple APIs to quickly integrate document processing into any application.

Multiple Input Types

Process local files directly or send base64 encoded data to the API.

Async Support

Node.js SDK provides promise-based async operations for non-blocking workflows.

Environment Config

Configure API URL and API keys easily using environment variables.

Reliable Processing

Built for stable and secure communication with the DocuProx API.

Clear Documentation

Step-by-step guides and examples to get started quickly.