Built for developers

Integrate document processing and analytics into your application in minutes with our developer-first API and comprehensive SDKs.

Get started in minutes

Install our SDK and make your first API call in under 5 minutes.

Install the SDK
$ npm install @docunero/sdk
Initialize and upload a document
import { DocuNero } from '@docunero/sdk';

const client = new DocuNero({
  apiKey: process.env.DOCUNERO_API_KEY
});

// Upload and process a document
const result = await client.documents.upload({
  file: documentFile,
  type: 'invoice',
  extractFields: ['amount', 'date', 'vendor']
});

console.log(result.data);

Everything you need to build

Powerful APIs, comprehensive SDKs, and detailed documentation to help you ship faster.

RESTful API

Simple, intuitive REST API with predictable resource-oriented URLs and JSON responses.

View API docs

Comprehensive Docs

Detailed guides, tutorials, and examples to help you integrate DocuNero quickly.

Read the docs

Webhooks

Real-time notifications for document processing events and status updates.

Learn about webhooks

SDKs & Libraries

Official SDKs for JavaScript, Python, Ruby, Go, and more coming soon.

Browse SDKs

Sandbox Environment

Test your integration safely with our full-featured sandbox environment.

Try the sandbox

Developer Support

Get help from our team via Discord, email, or schedule a call with our engineers.

Contact support

Simple, powerful API

Our API is designed to be intuitive and easy to use. Upload documents, extract data, and embed analytics with just a few lines of code.

  • RESTful design with predictable endpoints
  • Comprehensive error handling and validation
  • Rate limiting and usage analytics included
Explore API Reference
POST /v1/documents200 OK
{
  "id": "doc_1a2b3c4d5e",
  "status": "processed",
  "type": "invoice",
  "data": {
    "invoice_number": "INV-2024-001",
    "amount": 1234.56,
    "currency": "USD",
    "date": "2024-01-15",
    "vendor": "Acme Corp"
  },
  "confidence": 0.995,
  "created_at": "2024-01-15T10:30:00Z"
}

Start building today

Get your API key and start integrating DocuNero into your application in minutes.