Skip to main content
GET
/
reconciliation
/
{id}
Get reconciliation
curl --request GET \
  --url http://localhost:5001/reconciliation/{id} \
  --header 'X-blnk-key: <api-key>'
Use blnk.Reconciliation.get to fetch the status and match counts for a reconciliation run.
blnk.Reconciliation.get
const response = await blnk.Reconciliation.get('rec_a8f2c91d-1234-4abc-9def-0123456789ab');
FieldDescription
reconciliationIdID of the reconciliation run to retrieve.

Response shape

200 OK
{
  "reconciliation_id": "rec-123",
  "status": "completed",
  "matched_transactions": 20,
  "unmatched_transactions": 5,
  "created_at": "2025-03-17T12:00:00Z"
}
FieldDescription
reconciliation_idID of the reconciliation run.
statusCurrent status of the run, for example completed.
matched_transactionsNumber of records that matched.
unmatched_transactionsNumber of records that did not match.
created_atWhen the reconciliation started.

How reconciliation works

Batch and instant reconciliation workflows.

View reconciliation details

HTTP request and response schema.

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.