Built for Developers
Everything you need for document data extraction
Custom Schemas
Define your own JSON structure with custom field mappings and data types
Nested Structures
Preserve complex document hierarchies with arrays and nested objects
Real-Time API
Integrate directly with your systems via REST API or webhooks
Simple API Integration
Extract structured data from any PDF with a simple API call. Get JSON output ready for your database or application.
- API integrations and system automation
- Database population from documents
- ETL pipelines and data processing
- Document indexing for search
- CRM and ERP data imports
- Custom application workflows
// Extract PDF to JSON
const response = await fetch(
'https://api.1docextract.com/extract',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
document_url: 'https://...',
output_format: 'json',
schema: {
vendor_name: 'string',
invoice_total: 'number',
line_items: 'array'
}
})
}
);
const data = await response.json();
// { vendor_name: "...", ... }