Introduction

Intelligent document data extraction powered by AI

What is Automat?

Automat is a document intelligence platform that extracts structured data from any document using AI. Define what you want to extract, upload your documents, and get clean, structured JSON back.

Key Features

Define exactly what fields you need extracted. Automat uses your schema to intelligently locate and extract the data you care about.

Extract from PDFs, images (PNG, JPEG, TIFF), and scanned documents. Our AI handles various document layouts and qualities.

Simple REST API with Bearer token authentication. Integrate in minutes with any programming language.

Choose from multiple AI model tiers (Mini, Pro, Max) to balance speed, accuracy, and cost for your use case.

How it Works

  1. Create an Extractor - Define the schema for what data you want to extract
  2. Upload Documents - Send documents via API or the dashboard
  3. Get Structured Data - Receive clean JSON matching your schema

Quick Example

$curl -X POST https://inference.runautomat.com/api/extract \
> -H "Authorization: Bearer YOUR_API_KEY" \
> -F "extractorId=ext_abc123" \
> -F "file=@invoice.pdf"

Response:

1{
2 "success": true,
3 "data": {
4 "invoice_number": "INV-2024-001",
5 "date": "2024-01-15",
6 "total": 1250.00,
7 "vendor": "Acme Corp",
8 "line_items": [
9 { "description": "Widget A", "quantity": 10, "price": 100.00 }
10 ]
11 }
12}

Next Steps