v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Bank Accounts

Query bank accounts

Query bank accounts for the authenticated user

post/v6/banks/accounts/query

Request body

cursorstring nullable

Cursor from the previous paginated response

limitinteger

Page size, i.e. number of items to return per page

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "id": "123456",
      "status": "ACTIVE",
      "apiName": "PLAID",
      "iconUrl": "https://cdn.sandbox.tight.com/icons/banks/56.png",
      "name": "Chase Checking",
      "mask": "1234",
      "type": "DEPOSITORY",
      "subType": "CHECKING",
      "syncTransactions": true,
      "isSupported": true,
      "latestTransactionDate": "2025-01-01",
      "accountBalance": 100000
    }
  ]
}