graflows
v1.0 is now available

Turn Your Documents into Structured Data.

API-first, layout-aware extraction for the modern stack. Process PDFs and images with unmatched accuracy and preserve complex table structures.

invoice_1024.pdf
POST /v1/extract
{
  "document_id": "doc_123xyz",
  "status": "completed",
  "data": {
    "usage": {
      "pages": 1,
      "tokens": 420
    },
    "fields": {
      "invoice_number": "INV-2024-001",
      "date": "2024-02-15",
      "total_amount": {
        "value": 1250.00,
        "currency": "USD"
      },
      "line_items": [
        {
          "description": "Pro Plan Subscription",
          "quantity": 1,
          "amount": 999.00
        },
        {
          "description": "Usage Overage",
          "quantity": 12,
          "amount": 251.00
        }
      ]
    }
  }
}