Welcome to Rekognita Docs
Rekognita transforms a photo or scan of any physical document into its full digital twin — with tables, fields, and original structure. Accuracy is 99.1%. Connection via REST API — in 15 minutes.
Where to Start
API Overview & Authentication
Learn how Rekognita works, the available processing models, and how to create an API key for secure integration.
Learn MoreSDK Installation
Connect our Python SDK for easy interaction in synchronous or asynchronous modes.
Set Up SDKDocument Preparation
Check which file formats are supported (PDF, DOCX, images) and discover best practices for preparing scans.
Supported FilesChoosing Output Format
Choose the format you want your data in: Markdown/HTML, Word/PDF, Graph Structure, or precise JSON Schema.
Output FormatsExample Request
Here is a minimal example of sending a document for full restructuring via the REST API:
curl -X POST https://api.rekognita.com/v1/documents \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: multipart/form-data" \
-F "file=@invoice.pdf" \
-F "language=en"In response, you will receive a document_id, which you can use to track the processing status and retrieve the result.
{
"id": "doc_abc123",
"status": "processing",
"created_at": "2025-01-15T12:00:00Z",
"estimated_time": 3
}Need Help?
If you have any questions, write to us at info@rekognita.com or contact us via Telegram.