T-Bank Business
Access T-Bank Business accounts, balances, and statements via Open Banking API
tb
T-Bank Business (Т-Банк Бизнес, formerly Tinkoff Business) provides an Open Banking API for business account management. It allows listing accounts, checking balances, and downloading account statements programmatically.
With the T-Bank Business integration in AACFlow, you can:
- List accounts: Enumerate all business accounts linked to the API credentials
- Get balance: Retrieve the current balance of a specific account
- Get statement: Download an account statement for a specified date range
This integration enables automated financial reporting and account monitoring for Russian business workflows.
Usage Instructions
Integrate T-Bank Business into the workflow. Requires a T-Bank Business OAuth token from the T-Bank business portal at business.tbank.ru.
Tools
tbank_business_list_accounts
List all business accounts
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
token | string | Yes | T-Bank Business OAuth token |
Output
| Parameter | Type | Description |
|---|---|---|
accounts | array | Array of account objects |
success | boolean | Whether the request succeeded |
tbank_business_get_balance
Get balance for an account
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
token | string | Yes | T-Bank Business OAuth token |
accountNumber | string | Yes | Account number |
Output
| Parameter | Type | Description |
|---|---|---|
balance | number | Current account balance |
currency | string | Account currency |
tbank_business_get_statement
Download account statement
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
token | string | Yes | T-Bank Business OAuth token |
accountNumber | string | Yes | Account number |
from | string | Yes | Start date (YYYY-MM-DD) |
to | string | Yes | End date (YYYY-MM-DD) |
Output
| Parameter | Type | Description |
|---|---|---|
transactions | array | Array of transaction objects |
totalDebit | number | Total debit amount |
totalCredit | number | Total credit amount |
Links
- Official API: https://business.tbank.ru/openapi/docs
- AACFlow block source: apps/aacflow/blocks/blocks/tbank_business.ts

