We've added some new features to Documind to improve your document processing workflows. Here's what's new.
Three new endpoints
Convert documents into clean, structured formats with our new format endpoint. Currently supports text and markdown output, with tables and chunks coming soon.
1curl -X POST "https://api.documind.xyz/format" \
2-H "Authorization: Bearer YOUR_API_KEY" \
3-H "Content-Type: application/json" \
4-d '{
5"file": "https://example.com/document.pdf",
6"format": "markdown"
7}'
8
We've made schema definitions much easier. Provide a file URL, and we'll automatically generate an appropriate schema to use in your extraction.
1curl -X POST "https://api.documind.xyz/schema" \
2 -H "Authorization: Bearer YOUR_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "file": "https://example.com/invoice.pdf"
6 }'
7
Streamline your document workflow with our upload endpoint. Upload files and get a signed URL for immediate use with other API endpoints.
1curl -X POST "https://api.documind.xyz/upload" \
2 -H "Authorization: Bearer YOUR_API_KEY" \
3 -F "file=@/path/to/local/document.pdf"
4
Multi-Format Extraction
When you extract a document via the dashboard, you'll now see results in multiple formats simultaneously:
JSON output
Markdown
Plain text
Chunks
Extracted tables
Extracted images
Improved extraction history
We've revamped how you review past extractions. Now you can access the complete details of each job directly from your dashboard. Plain text, markdown and JSON formats of previous extractions are available.
Expanded schema builder
The Schema Builder now supports more data types to better match your document structures:
Boolean fields: Perfect for yes/no values and checkboxes
Enum field types: Create fields with predefined options for consistent data extraction
Try it out!
Ready to explore these new features?
Log in to your dashboard to run and extraction and try them out
Check out our tutorial to get started extracting data from PDFs
Visit the API Reference for detailed documentation
Not using Documind yet? Sign up for the beta or book a demo