Updates
2 April, 2025 · 2 min read

Product Updates - March

Everything we launched this March

Tami

Tami

Product

Product Updates - March

We've added some new features to Documind to improve your document processing workflows. Here's what's new.

Three new endpoints

/format

Convert documents into clean, structured formats with our new format endpoint. Currently supports text and markdown output, with tables and chunks coming soon.

bash
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
/schema

We've made schema definitions much easier. Provide a file URL, and we'll automatically generate an appropriate schema to use in your extraction.

bash
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
/upload

Streamline your document workflow with our upload endpoint. Upload files and get a signed URL for immediate use with other API endpoints.

bash
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?

Share this post: