We use cookies to improve your experience and analyze site traffic. See our Privacy Policy for details.
Welcome to ParseFlow. Whether you just redeemed a Lifetime code or signed up for the free tier, these 5 steps + the features index below cover everything you need.
Sign up at /login or redeem your Lifetime coupon at /redeem with email + code. You get an account in <2 seconds.
After redeem, your raw API key (dm_live_…) is shown ONCE on the success page AND sent via email as a permanent fallback. Store it in a password manager.
POST a PDF/DOCX/XLSX to /api/v1/extract with X-API-Key header. Specify document_type=auto for auto-detection or use a template (invoice, receipt, contract, id_document, bank_statement).
Visit /playground to test extraction interactively — drop a file, choose a template, see the JSON output instantly. No code needed.
For non-standard documents, POST to /api/v1/extract with document_type=custom + custom_instructions={fields:[...]}. The schema gallery at /templates has 10 ready-to-copy examples.
Every feature ParseFlow ships, how to reach it from the UI, and the API endpoint behind it.
| Feature | What it does | UI path | API |
|---|---|---|---|
| PDF/DOCX/XLSX Extraction | Structured JSON output from any document, 5 predefined templates + custom. | /playground | POST /api/v1/extract |
| Template Schema Export | JSON Schema (draft-2020-12) for each predefined template — plug into Ajv, Zod, OpenAPI clients. | /templates | GET /api/v1/templates/<name>/schema |
| Public Template Gallery | 10 ready-to-copy parsing examples covering invoices, receipts, contracts, IDs, shipping labels. | /templates | — |
| Batch Processing | Upload multiple documents at once, async processing with webhook callback. | /batch | POST /api/v1/batch |
| Merkle Audit Proof | Cryptographic chain-of-custody for every extraction — court-ready evidence. | /audit-proof | GET /api/v1/audit-proof?id=<extractionId> |
| i18n Output (6 languages) | Field labels in en/de/fr/es/ja/pt-br — set `lang` (or `output_lang`) param. | /playground | POST /api/v1/extract — formData lang=de |
| OpenAPI Spec | Machine-readable API definition for SDK generation. | /api/openapi/v1 | GET /api/openapi/<schema> |
| Demo endpoint | Try extraction without an API key (rate-limited). | /playground | POST /api/v1/demo |
| Feedback loop | Improve extraction accuracy by flagging wrong fields. | /feedback | POST /api/v1/feedback |
Need help? Email hello@parseflow.dev — we reply within 48 hours.