← Blog · Fraud Prevention

Structuring Detection: Catching Deliberately Small Transactions

PrivateKYCBot Team · September 16, 2026 · 3 min read

Structuring Detection: Catching Deliberately Small Transactions

Structuring is the practice of breaking a large transaction into smaller ones to stay under reporting thresholds. In the United States, the Currency Transaction Report (CTR) triggers at 10,000 USD; a customer who deposits 9,500 USD twice in two days is not economizing, they are engineering. Detecting this pattern is one of the oldest problems in transaction monitoring, and one of the easiest to get wrong in either direction.

What Structuring Actually Looks Like

The textbook case is a single account making repeated deposits just below a fixed threshold. Reality is messier. Modern structuring spreads activity across dimensions to defeat simple rules:

  • Across time: 9,000 USD on Monday, 8,700 USD on Thursday, rather than the same day.
  • Across accounts: smurfing, where multiple mules each move sub-threshold amounts that aggregate to a large sum.
  • Across channels: part cash, part wire, part instant payment, so no single system sees the total.
  • Across instruments: converting cash to money orders or prepaid cards before deposit.

The common signal is intent to avoid detection, not the amount itself. That makes a flat threshold rule both over- and under-inclusive: it flags a payroll run at 9,800 USD while missing three coordinated 6,000 USD transfers.

Building Rules That Catch Aggregation

Effective structuring detection aggregates before it evaluates. A useful baseline combines several rule families rather than relying on one:

  • Rolling-window sums: total inflows per customer over 24 hours, 7 days, and 30 days, compared against expected activity from the risk profile.
  • Proximity-to-threshold scoring: transactions falling in a band such as 9,000–9,999 USD score higher than random amounts, especially when repeated.
  • Velocity checks: a sudden increase in transaction count relative to the customer's own 90-day baseline.
  • Network aggregation: grouping accounts that share a device, beneficiary, IP, or phone number, then summing across the cluster to expose smurfing.

The last one matters most. Structuring built to defeat account-level rules collapses under entity-level aggregation, which is why device and phone-number linkage feed directly into monitoring, not just onboarding. A verification identity captured at signup — and the session metadata around it — becomes the key that ties a smurf network together weeks later.

Tuning to Survive the Alert Volume

Structuring rules generate high false-positive rates by nature, because legitimate customers frequently transact near round numbers. Businesses that deposit daily cash, landlords collecting rent, and gig workers cashing out all produce patterns that resemble structuring. Untuned, these rules bury analysts.

Reduce the noise with segmentation and context rather than by raising thresholds:

  • Baseline each customer against their own history and declared occupation, so expected cash businesses do not fire on expected behavior.
  • Suppress alerts where the aggregate, while near a threshold, matches a documented and recurring source such as verified payroll.
  • Weight amounts that are just below the line more heavily than amounts that merely happen to be moderate.
  • Track precision per rule and retire or merge rules that produce alerts no analyst ever escalates.

Document every tuning decision. When an examiner asks why a threshold sits at 30 days rather than 7, the answer should reference a measured false-positive rate, not a guess. The same audit discipline that applies to identity checks applies to monitoring logic.

From Detection to Disposition

A structuring alert is a hypothesis, not a conclusion. The investigation determines whether repeated sub-threshold activity reflects intent or coincidence, and that determination drives whether a Suspicious Activity Report is warranted. Structuring is independently reportable in many jurisdictions even when the underlying funds are lawful, because the act of evasion is itself the offense.

Analysts need the full context assembled in one place: the aggregated flows, the linked entities, the onboarding record, and any prior alerts on the same cluster. When identity data is collected with minimization in mind and retained under a clear policy, that context stays available for the investigation window without becoming a liability afterward. General information here is no substitute for tailored legal and compliance advice on your specific reporting obligations.

General information, not legal advice. Talk to your compliance counsel for guidance on your specific obligations.