Veryfi · Schema
Veryfi Bank Statement
A processed bank statement with extracted transaction data from the Veryfi OCR API
Artificial IntelligenceDocument ProcessingFinanceInvoicesOCRReceiptsTax Forms
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique bank statement ID |
| account_number | string | Masked bank account number |
| routing_number | string | Bank routing number |
| account_holder | string | Account holder name |
| bank_name | string | Bank or financial institution name |
| statement_date | string | Statement period end date |
| opening_balance | number | Account balance at beginning of statement period |
| closing_balance | number | Account balance at end of statement period |
| transactions | array | List of transactions in the statement |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/veryfi/refs/heads/main/json-schema/veryfi-bank-statement-schema.json",
"title": "Veryfi Bank Statement",
"description": "A processed bank statement with extracted transaction data from the Veryfi OCR API",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique bank statement ID"
},
"account_number": {
"type": "string",
"description": "Masked bank account number"
},
"routing_number": {
"type": "string",
"description": "Bank routing number"
},
"account_holder": {
"type": "string",
"description": "Account holder name"
},
"bank_name": {
"type": "string",
"description": "Bank or financial institution name"
},
"statement_date": {
"type": "string",
"description": "Statement period end date"
},
"opening_balance": {
"type": "number",
"format": "float",
"description": "Account balance at beginning of statement period"
},
"closing_balance": {
"type": "number",
"format": "float",
"description": "Account balance at end of statement period"
},
"transactions": {
"type": "array",
"description": "List of transactions in the statement",
"items": {
"type": "object",
"properties": {
"date": { "type": "string" },
"description": { "type": "string" },
"amount": { "type": "number", "format": "float" },
"type": { "type": "string", "enum": ["credit", "debit"] },
"balance": { "type": ["number", "null"], "format": "float" }
},
"required": ["date", "description", "amount", "type"]
}
}
},
"required": ["id"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/veryfi-bank-statement"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.