Extract key fields from bills and statements with a single API request.
Extract bill data quickly to support streamlined payment flows.
Validate bill authenticity and detect duplicate submissions automatically.
RESTful API integrates with any payment platform or banking system.
From utility bills to credit card statements, extract the data needed for payment flows. Global routing helps reduce latency across regions.
// Extract bill data for instant payment
const response = await fetch(
'https://api.textflow.dev/v2/extract',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
imageUrl: 'https://.../bill.jpg',
model: 'fast-precise'
})
}
)
const { biller, amount, due_date, account } =
await response.json()
// Initiate payment with extracted data
await initiatePayment({ biller, amount, account }) Start with 100 pages free. No credit card required.
Get Started Free