See the details of one or all balances.
curl --request GET \
--url http://localhost:5001/reconciliation/{reconciliation_id} \
--header 'X-blnk-key: <api-key>'{
"reconciliation_id": "rec-123",
"status": "completed",
"matched_transactions": 20,
"unmatched_transactions": 5,
"created_at": "2025-03-17T12:00:00Z"
}
X-blnk-key: <api-key>.
Replace <api-key> with your secret API key. Ensure the key is kept secure and not exposed in public repositories or client-side code.
See also: Secure your Blnk server
{
"reconciliation_id": "rec-123",
"status": "completed",
"matched_transactions": 20,
"unmatched_transactions": 5,
"created_at": "2025-03-17T12:00:00Z"
}
Was this page helpful?
curl --request GET \
--url http://localhost:5001/reconciliation/{reconciliation_id} \
--header 'X-blnk-key: <api-key>'{
"reconciliation_id": "rec-123",
"status": "completed",
"matched_transactions": 20,
"unmatched_transactions": 5,
"created_at": "2025-03-17T12:00:00Z"
}