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>'
import requests

url = "https://api.dualentry.com/public/v2/bank-match/bank-transactions/{financial_transaction_id}/"

headers = {"X-API-KEY": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};

fetch('https://api.dualentry.com/public/v2/bank-match/bank-transactions/{financial_transaction_id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.dualentry.com/public/v2/bank-match/bank-transactions/{financial_transaction_id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.dualentry.com/public/v2/bank-match/bank-transactions/{financial_transaction_id}/"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-KEY", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.dualentry.com/public/v2/bank-match/bank-transactions/{financial_transaction_id}/")
.header("X-API-KEY", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.dualentry.com/public/v2/bank-match/bank-transactions/{financial_transaction_id}/")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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
  ]
}
{
"errors": {},
"success": false
}

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
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 July 13, 2026