Bank Statement
Get Bank Statement Fields
This endpoint returns an object representing the extracted bank-statement model fields from a document.
GET
Authorizations
Our API offers authentication via API keys. You can obtain an API key from https://developer.abbyy.com
Path Parameters
The id of the document
Response
200
application/json
Extracted Bank Statement Data Response
Represents a document that has been submitted for processing.
Example:
{
"id": "wh23anb5xjf0ntw5taase5qz",
"name": "document.jpg",
"createdAt": "2025-02-07T17:44:06.949Z",
"model": "image-to-text",
"status": "Processed",
"pageCount": 10,
"errors": [{ "message": "Total is required" }]
}
Fields extracted from a bank statement
Example:
{
"bankName": "Chase Bank",
"accountNumber": "1234-5678-9012-3456",
"accountOwnerName": "John A. Smith",
"accountOwnerAddress": "456 Home Street, San Francisco, CA 94105",
"accountCoOwnerName": [{ "accountCoOwnerName": "Jane B. Smith" }],
"currency": "USD",
"dateOfBankStatement": "2024-01-15",
"endingBalanceOfThePeriod": 5000,
"endingBalanceDate": "2024-01-31"
}
An array of validation errors that occurred while processing the document. These typically do not prevent field extraction, but rather indicate issues extracting key fields.
Was this page helpful?