Skip to main content
GET
/
public
/
v2
/
bank-match
/
bank-transactions
/
{financial_transaction_id}
Get one bank-feed transaction
curl --request GET \
  --url https://api.dualentry.com/public/v2/bank-match/bank-transactions/{financial_transaction_id}/ \
  --header 'X-API-KEY: <api-key>'
{
  "id": 123,
  "financial_account_id": 123,
  "date": "2023-11-07T05:31:56Z",
  "posted_at": "2023-11-07T05:31:56Z",
  "amount": "<string>",
  "debit_amount": "<string>",
  "credit_amount": "<string>",
  "description": "<string>",
  "currency_iso_4217_code": "<string>",
  "is_posted": true,
  "is_expired": true,
  "financial_account_name": "<string>",
  "payee": "<string>",
  "matched_transaction_ids": [
    123
  ],
  "matched_entry_ids": [
    123
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

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
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 May 28, 2026