Now in Public Beta

Unlock PDF Data
Without Subscriptions

The developer-first API for extracting structured data from PDFs. No monthly fees, no signups. Pay per request with x402.

Abstract Data Flow
const response = await fetch('https://refaktr.io/unpdf/parse', {
  method: 'POST',
  body: formData
});

// Returns structured JSON
const data = await response.json();

Features

Built for Modern Developers

Lightning Fast

Powered by AWS Lambda and Bedrock for sub-second processing times on standard documents.

AI Powered

Leverages Claude 3 to intelligently parse, summarize, and structure data from any PDF layout.

Pay Per Use

No subscriptions. No credit cards. Pay instantly with USDC via the x402 protocol.

Simple, Transparent Pricing

Pay only for what you process.

Per Document

$0.05 / PDF

Paid in USDC via x402.

  • Full text extraction
  • AI Summarization
  • JSON Output

API Reference

Integrate UnPDF into your application in minutes. Our API is designed to be simple and predictable.

Method POST
Format multipart/form-data

Endpoint

https://refaktr.io/unpdf/parse

Example Request

curl -X POST https://refaktr.io/unpdf/parse \
  -H "Content-Type: application/pdf" \
  --data-binary @document.pdf

Response (Success)

{
  "summary": "This document is an invoice...",
  "data": {
    "invoice_number": "INV-123",
    "total": "$500.00",
    ...
  }
}