Documents

Document parse

Any invoice, receipt, EOB, ERA, or COI — PDF or image — into structured, validated JSON.

POST /v1/parse$0.10/document · 10 credits, charged only on success

Send this

{
  "fileUrl": "https://…/invoice.pdf"
}

Every response carries usage — the credits burned and your remaining balance. A failed call never burns credits.

Try it live against your own key in the interactive reference; every account gets 500 free credits a month, no card.

Get this back

{
  "docType": "invoice",
  "party": "Acme Supplies Inc.",
  "documentNumber": "INV-10428",
  "date": "2026-06-30",
  "totalAmount": 4820.5,
  "lineItems": [
    {
      "description": "…",
      "amount": 1200
    }
  ],
  "fields": [
    {
      "label": "PO Number",
      "value": "PO-88",
      "confidence": 0.98
    }
  ],
  "usage": {
    "credits": 10,
    "balanceRemaining": 490
  }
}

Four ways in. Same $0.10/document.

curl
curl https://api.kynth.studio/v1/parse \
  -H "Authorization: Bearer ksk_live_…" \
  -H "Content-Type: application/json" \
  -d '{"fileUrl":"https://…/invoice.pdf"}'
TypeScript
import { KynthCore } from "@kynth/api";

const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.parse({
  "fileUrl": "https://…/invoice.pdf"
});
Python
from kynth import Kynth

client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.parse(
    fileUrl="https://…/invoice.pdf",
)
MCP
// One-time setup in your MCP client (Claude, Cursor, …):
{ "mcpServers": { "kynth-core": {
    "command": "npx", "args": ["@kynth/api-mcp"],
    "env": { "KYNTH_API_KEY": "ksk_live_…" } } } }

// Then the agent just calls the kynth_parse tool.

More from documents