POST /v1/parse?wait=60
200 OK · 2.1s{
"schema_version": "bank_statement.v1",
"model": "claude-sonnet-4-6",
"warnings": [],
"result": {
"institution_name": "NORDIC TRUST BANK",
"account_holder": "Test Customer",
"account_iban": "BE12345678901234",
"statement_period_start": "2026-04-01",
"statement_period_end": "2026-04-30",
"currency": "EUR",
"opening_balance": { "amount": "1000.00", "currency": "EUR" },
"closing_balance": { "amount": "2159.59", "currency": "EUR" },
"transactions": [
{
"posted_date": "2026-04-03",
"description": "Salary payment",
"amount": { "amount": "2500.00", "currency": "EUR" },
"balance_after": { "amount": "3500.00", "currency": "EUR" },
"type": "credit"
},
{
"posted_date": "2026-04-05",
"description": "Rent",
"amount": { "amount": "-1200.00", "currency": "EUR" },
"balance_after": { "amount": "2300.00", "currency": "EUR" },
"type": "debit"
},
{
"posted_date": "2026-04-08",
"description": "Grocery store",
"amount": { "amount": "-87.50", "currency": "EUR" },
"balance_after": { "amount": "2212.50", "currency": "EUR" },
"type": "debit"
}
]
}
}