Send any document — PDF, email, webpage URL — and get back clean, schema-validated JSON. Built for AI agents and developers.
Upload a PDF, forward an email, or pass a webpage URL. We accept any common document format via a simple API call.
Our engine parses the document, extracts structured fields, and validates them against your schema or our defaults.
Receive structured, type-safe JSON — ready to feed into your pipeline, database, or AI agent. No post-processing needed.
One API call. From raw document to structured data.
$ curl -X POST \
https://api.parsex.dev/v1/extract \
-H "Authorization: Bearer px_sk_..." \
-H "Content-Type: application/json" \
-d '{
"url": "https://acme.com/invoice-2847.pdf",
"schema": "invoice"
}'{
"status": "success",
"data": {
"vendor": "Acme Corp",
"invoice_number": "INV-2847",
"date": "2026-03-15",
"total": 1250.00,
"currency": "USD",
"line_items": [
{
"description": "API Integration",
"quantity": 1,
"unit_price": 1250.00
}
],
"confidence": 0.98
}
}Choose the plan that fits your extraction volume. Upgrade or downgrade anytime.
1,000 extractions/month
10,000 extractions/month
50,000 extractions/month