docs
UAEN
Docs/Welcome

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.

New to Rekognita? Start with the Quickstart page to set up your API key and send your first request in minutes.

Where to Start

1

API Overview & Authentication

Learn how Rekognita works, the available processing models, and how to create an API key for secure integration.

Learn More
2

SDK Installation

Connect our Python SDK for easy interaction in synchronous or asynchronous modes.

Set Up SDK
3

Document Preparation

Check which file formats are supported (PDF, DOCX, images) and discover best practices for preparing scans.

Supported Files
4

Choosing Output Format

Choose the format you want your data in: Markdown/HTML, Word/PDF, Graph Structure, or precise JSON Schema.

Output Formats

Example 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.