Skip to main content
GET
/
bank-accounts
/
{bankAccount}
Show bank account
curl --request GET \
  --url https://app.fintoro.sk/api/public/v1/bank-accounts/{bankAccount} \
  --header 'Authorization: Bearer <token>'
{
  "id": 201,
  "bankId": 1,
  "bank": {
    "id": 23,
    "name": "Tatra Banka",
    "swift": "TATRSKBX"
  },
  "isPrimary": true,
  "autoPaymentMatching": true,
  "name": "Main account",
  "iban": "SK3111000000001234567890",
  "swift": "TATRSKBX",
  "autoPairingStrategy": "by_variable_symbol",
  "balance": 1234.56,
  "lastSyncedAt": "2026-03-01 10:15:16",
  "openBankingValidUntil": "2026-04-30",
  "createdAt": "2026-03-03 12:00:00",
  "updatedAt": "2026-03-03 15:45:00"
}

Authorizations

Authorization
string
header
required

Bearer token created for a specific company in Integrations → API.

Path Parameters

bankAccount
integer
required

Bank account ID.

Example:

201

Response

Bank account detail.

Bank account. This object combines the business account fields, bank details, and open banking state.

id
integer

Internal Fintoro bank account ID.

Example:

201

bankId
integer | null

Bank ID from the banks lookup endpoint. If null, the account is not linked to a known bank from the public lookup.

Example:

1

bank
object

Nested bank object corresponding to bankId, when the bank is known and still available in the lookup dataset.

isPrimary
boolean

Indicates whether this account is currently marked as the company's primary bank account.

Example:

true

autoPaymentMatching
boolean

Indicates whether the account is currently connected to automatic payment matching through open banking. This value is derived from the presence of an open banking connection and is never sent in the request payload.

Example:

true

name
string

User-facing bank account name shown in Fintoro.

Example:

"Main account"

iban
string

Bank account IBAN.

Example:

"SK3111000000001234567890"

swift
string

SWIFT or BIC code of the bank account.

Example:

"TATRSKBX"

autoPairingStrategy
enum<string>

Automatic payment pairing strategy used for this bank account.

Available options:
none,
by_variable_symbol,
by_price,
by_variable_symbol_and_price,
by_all_symbols,
by_all_symbols_and_price
Example:

"by_variable_symbol"

balance
number<float> | null

Last known account balance, when available from open banking.

Example:

1234.56

lastSyncedAt
string | null

Date and time of the last successful open banking sync, when available.

Example:

"2026-03-01 10:15:16"

openBankingValidUntil
string<date> | null

Date until which the current open banking consent remains valid, if present.

Example:

"2026-04-30"

createdAt
string | null

Date and time when the bank account was created.

Example:

"2026-03-03 12:00:00"

updatedAt
string | null

Date and time of the most recent bank account change.

Example:

"2026-03-03 15:45:00"