Skip to main content
GET
Get one bank-feed transaction

Authorizations

X-API-KEY
string
header
required

Path Parameters

financial_transaction_id
integer
required

Response

OK

A single bank-feed row (one debit or credit on a connected bank/credit-card account).

Use this to drive matching externally: pick a row, decide which DualEntry transaction it pairs with, then POST /matches/.

id
integer
required
financial_account_id
integer
required
date
string<date-time>
required
posted_at
string<date-time> | null
required
amount
string
required

Signed amount. Positive = debit (money in), negative = credit (money out).

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
debit_amount
string
required

max(amount, 0). Zero when this row is a credit.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
credit_amount
string
required

abs(min(amount, 0)). Zero when this row is a debit.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
description
string
required
currency_iso_4217_code
string | null
required
source
enum<string>
required

Where the row came from (Plaid, Meld, CSV upload, etc.).

Available options:
pdf_upload,
csv_upload,
manual_upload,
bai_upload,
meld,
plaid,
waycore,
saltedge,
customer_api
is_posted
boolean
required
is_expired
boolean
required
matching_status
enum<string>
required

Where the row sits in the bank-match pipeline. matched means a DualEntry transaction is paired to it.

Available options:
unprocessed,
deterministic_suggested,
awaiting_ai,
ai_in_progress,
ai_suggested,
ai_no_match,
no_match,
excluded,
matched
financial_account_name
string | null

Human-readable name of the bank/credit-card account this row belongs to.

payee
string | null

Merchant or counterparty, when the bank reports one.

matched_transaction_ids
integer[]

DualEntry transaction IDs currently matched to this row. Empty unless matching_status == 'matched'.

matched_entry_ids
integer[]

DualEntry entry IDs currently matched to this row (used for partial matches like journal entries).

Last modified on August 21, 2026