Receipt extraction
A receipt into merchant, items, totals, payment method, and an expense category — built for expense flows.
Send this
{
"fileUrl": "https://…/receipt.jpg"
}Every response carries usage — the credits burned and your remaining balance. A failed call never burns credits.
Run it right now — no key — in the playground; every account gets 500 free credits a month, no card.
Comparing vendors? Invoice OCR API pricing compared puts this rate next to ten other vendors’ per-document prices, minimums and free tiers, each read at source and dated. Still choosing? The best document extraction APIs in 2026 picks a winner per job — including the jobs where we are not it. For receipts specifically, receipt OCR APIs for developers prices this endpoint against Taggun, Tabscanner and Nanonets.
Get this back
{
"merchant": "Blue Bottle Coffee",
"location": "315 Linden St, Oakland CA",
"date": "2026-07-02",
"time": "09:41",
"currency": "USD",
"subtotal": 10.25,
"tax": 0.95,
"tip": null,
"total": 11.2,
"paymentMethod": "visa ****4242",
"category": "meals",
"items": [
{
"description": "Latte 12oz",
"quantity": 1,
"amount": 5.75
},
{
"description": "Croissant",
"quantity": 1,
"amount": 4.5
}
],
"usage": {
"credits": 6,
"balanceRemaining": 430
}
}Four ways in. Same $0.06/receipt.
curl https://api.kynth.studio/v1/receipt \
-H "Authorization: Bearer $KYNTH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"fileUrl":"https://…/receipt.jpg"}'import { KynthCore } from "@kynth/api";
const kynth = new KynthCore({ apiKey: process.env.KYNTH_API_KEY! });
const result = await kynth.receipt({
"fileUrl": "https://…/receipt.jpg"
});from kynth import Kynth
client = Kynth(api_key=os.environ["KYNTH_API_KEY"])
result = client.receipt(
fileUrl="https://…/receipt.jpg",
)// One-time setup in your MCP client (Claude, Cursor, …):
{ "mcpServers": { "kynth-parserail": {
"command": "npx", "args": ["@kynth/api-mcp"],
"env": { "KYNTH_API_KEY": "$KYNTH_API_KEY" } } } }
// Then the agent just calls the kynth_receipt tool.More from documents
Any invoice, receipt, EOB, ERA, or COI — PDF or image — into structured, validated JSON.
A contract → parties, effective date, term, renewal, governing law, obligations, and flagged risk clauses.
An invoice — PDF, photo, or text — into vendor, dates, PO refs, tax, totals, and clean line items.