Retrieve the Watch evaluation result for a transaction: final verdict, risk score, and reason.
curl http://localhost:8081/transactions/txn_001
{
"transaction_id": "txn_001",
"amount": 15000,
"currency": "USD",
"source": "acct_sender_123",
"destination": "acct_receiver_456",
"reference": "payment_ref_001",
"description": "Wire transfer",
"status": "",
"created_at": "2026-03-16T09:00:05Z",
"meta_data": {
"kyc_tier": 1,
"source_country": "US",
"destination_country": "NG",
"evaluation_status": "completed",
"risk_evaluation_timestamp": "2026-03-16T09:00:05.123456789Z",
"dsl_verdicts": [
{
"rule_id": 1,
"verdict": "review",
"score": 0.5,
"reason": "Amount exceeds $10,000"
}
],
"consolidated_risk_assessment": {
"final_risk_score": 0.5,
"final_verdict": "review",
"final_reason": "Amount exceeds $10,000",
"source_count": 1
}
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.blnkfinance.com/llms.txt
Use this file to discover all available pages before exploring further.
curl http://localhost:8081/transactions/txn_001
{
"transaction_id": "txn_001",
"amount": 15000,
"currency": "USD",
"source": "acct_sender_123",
"destination": "acct_receiver_456",
"reference": "payment_ref_001",
"description": "Wire transfer",
"status": "",
"created_at": "2026-03-16T09:00:05Z",
"meta_data": {
"kyc_tier": 1,
"source_country": "US",
"destination_country": "NG",
"evaluation_status": "completed",
"risk_evaluation_timestamp": "2026-03-16T09:00:05.123456789Z",
"dsl_verdicts": [
{
"rule_id": 1,
"verdict": "review",
"score": 0.5,
"reason": "Amount exceeds $10,000"
}
],
"consolidated_risk_assessment": {
"final_risk_score": 0.5,
"final_verdict": "review",
"final_reason": "Amount exceeds $10,000",
"source_count": 1
}
}
}
meta_data includes the verdict details:
rule_id, verdict, score, and reason.Show Assessment properties
0 and 1, averaged from matched rule scores.allow, review, or block. Scores at or above 0.7 map to block; lower matched scores default to review.;.completed once Watch has finished evaluating the transaction.Was this page helpful?
curl http://localhost:8081/transactions/txn_001
{
"transaction_id": "txn_001",
"amount": 15000,
"currency": "USD",
"source": "acct_sender_123",
"destination": "acct_receiver_456",
"reference": "payment_ref_001",
"description": "Wire transfer",
"status": "",
"created_at": "2026-03-16T09:00:05Z",
"meta_data": {
"kyc_tier": 1,
"source_country": "US",
"destination_country": "NG",
"evaluation_status": "completed",
"risk_evaluation_timestamp": "2026-03-16T09:00:05.123456789Z",
"dsl_verdicts": [
{
"rule_id": 1,
"verdict": "review",
"score": 0.5,
"reason": "Amount exceeds $10,000"
}
],
"consolidated_risk_assessment": {
"final_risk_score": 0.5,
"final_verdict": "review",
"final_reason": "Amount exceeds $10,000",
"source_count": 1
}
}
}