Skip to main content
GET
/
public
/
v2
/
bank-match
/
suggestions
/
{suggestion_id}
Get one bank-match suggestion
curl --request GET \
  --url https://api.dualentry.com/public/v2/bank-match/suggestions/{suggestion_id}/ \
  --header 'X-API-KEY: <api-key>'
{
  "id": 123,
  "financial_transaction_id": 123,
  "transaction_id": 123,
  "confidence_score": "<string>"
}

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

suggestion_id
integer
required

Response

OK

A single bank-match suggestion.

Pairs a bank-feed row (financial_transaction_id) with a DualEntry accounting transaction (transaction_id). suggestion_type tells you whether we're proposing to match against something you already have on file, or to draft a new transaction.

id
integer
required
financial_transaction_id
integer
required
transaction_id
integer
required
suggestion_type
enum<string>
required
Available options:
match,
create
confidence_score
string | null

How confident the AI is, from 0.00 to 100.00. Null for deterministic (rule-based) matches where confidence doesn't apply.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Last modified on May 28, 2026