Structured Data Extraction API

Any document in,
structured JSON out

Send any document — PDF, email, webpage URL — and get back clean, schema-validated JSON. Built for AI agents and developers.

$ curl -X POST api.parsex.dev/v1/extract
Scroll
How it works

Three steps. Zero complexity.

01

Send any document

Upload a PDF, forward an email, or pass a webpage URL. We accept any common document format via a simple API call.

02

We extract & validate

Our engine parses the document, extracts structured fields, and validates them against your schema or our defaults.

03

Get clean JSON

Receive structured, type-safe JSON — ready to feed into your pipeline, database, or AI agent. No post-processing needed.

Live example

See it in action

One API call. From raw document to structured data.

RequestPOST
$ 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"
  }'
Response200 OK
{
  "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
  }
}
Pricing

Plans that scale with you

Choose the plan that fits your extraction volume. Upgrade or downgrade anytime.

Starter
$29/ month

1,000 extractions/month

  • URL, PDF & image support
  • Schema validation
  • Email support
  • Webhook delivery
Get Started
ProMost Popular
$99/ month

10,000 extractions/month

  • Everything in Starter
  • Priority processing
  • Custom schemas
  • Priority support
Get Started
Enterprise
$299/ month

50,000 extractions/month

  • Everything in Pro
  • Dedicated support
  • SLA guarantee
  • Custom integrations
Get Started