The developer-first API for extracting structured data from PDFs. No monthly fees, no signups. Pay per request with x402.
const response = await fetch('https://refaktr.io/unpdf/parse', {
method: 'POST',
body: formData
});
// Returns structured JSON
const data = await response.json();
Built for Modern Developers
Powered by AWS Lambda and Bedrock for sub-second processing times on standard documents.
Leverages Claude 3 to intelligently parse, summarize, and structure data from any PDF layout.
No subscriptions. No credit cards. Pay instantly with USDC via the x402 protocol.
Pay only for what you process.
Paid in USDC via x402.
Integrate UnPDF into your application in minutes. Our API is designed to be simple and predictable.
https://refaktr.io/unpdf/parse
curl -X POST https://refaktr.io/unpdf/parse \
-H "Content-Type: application/pdf" \
--data-binary @document.pdf
{
"summary": "This document is an invoice...",
"data": {
"invoice_number": "INV-123",
"total": "$500.00",
...
}
}