Skip to main content
Version: v2alpha1

Bank data using the API

Before you start

  • Refer to bank connectivity guide to connect your bank account to the getpaid's platform and start ingesting bank transactions. Check the pagination to understand how list of resources work.

Steps

1. Get bank transactions

List the bank transactions imported calling GET /bank_transactions.

The enrichment_status indicates whether the transaction was enriched with additional bank files or not to ease the reconciliation with extended transaction information.

Response

200 OK
{
"cursor": "Q3VyaW9zaXR5IEtpbGxlZCB0aGUgQ2F0Cg==",
"data": [
{
"id": "trx_4ehg1mkv3mvt3256vcn8dspb4h",
"enrichment_status": "enriched",
[...]
},
{
"id": "trx_4ve0983428h1a56b52sm9v98df",
"enrichment_status": "not_enriched",
[...]
},
[...]
]
}