Technical by

Detecting Synthetic Identities Before They Cost You

Synthetic identity fraud — where fraudsters blend real and fabricated data to create new identities — is now the fastest-growing form of financial fraud in the US. Here is what the signals look like and how to catch them at origination.

Detecting Synthetic Identities Before They Cost You

Synthetic identity fraud is structurally different from most other fraud categories, and that difference matters enormously for detection. Traditional identity theft — where a fraudster uses a real person's credentials — leaves a victim who can report the fraud, dispute the accounts, and trigger an investigation chain. Synthetic identity fraud creates a person who doesn't exist as a real individual: a fabricated identity assembled from a mix of real data points (often a valid SSN from a data breach) and invented supporting attributes. There is no victim in the traditional sense, no one to call the bank and say "that wasn't me." The synthetic identity behaves like a real customer until it doesn't.

The Federal Reserve's paper on synthetic identity fraud in the US financial system has estimated it as the fastest-growing type of financial crime in the country, generating losses estimated in the billions annually. The difficulty of detection — and the reason losses have grown — is that the signals are subtle and require cross-domain data joins that most financial institutions haven't historically had the infrastructure to execute at origination speed.

How synthetic identities are constructed

The construction of a usable synthetic identity typically follows a documented pattern that fraud researchers have mapped extensively. The foundation is a valid Social Security Number — either obtained from a data breach, purchased on a dark web market, or in some cases, randomly generated (though the Social Security Administration's SSN randomization program in 2011 made purely random SSN generation less reliable). The SSN is then combined with fabricated supporting attributes: a name that doesn't belong to the SSN's legitimate owner, a date of birth adjusted for plausibility, a physical address that exists but isn't associated with the real SSN holder, and contact information (email, phone) that is newly created for this identity.

What makes this dangerous at origination is that a standard KYC check — name/SSN/date-of-birth match — may return a positive result because the SSN is real and the date of birth is plausible for the SSN's actual owner. The fraudster hasn't stolen an existing credit file; they've created a thin one that passes basic validation. The diagnostic signal is not in the credit file — it's in the identity graph: does this SSN have an associated name, address, and behavioral history that is consistent with the submitted application?

The credit-building phase and why institutions fund it

One of the distinctive features of synthetic identity fraud that makes it expensive is the seasoning process. A freshly constructed synthetic identity has no credit file, so it can't immediately qualify for high-limit products. The fraud actor addresses this by opening low-limit, low-friction accounts — secured credit cards, credit builder loans, subprime BNPL accounts — and making on-time payments over 6–18 months to build a thin but positive credit history. The financial institution that extended the initial secured credit line funds the fraud actor's credit building without loss, because the actor is actually paying. The loss materializes later, at the bust-out transaction with a different institution that has extended a higher credit limit based on the now-seasoned synthetic profile.

This distribution of loss across institutions is why synthetic identity fraud is structurally hard to detect using individual-institution data alone. The institution that loses money didn't originate the fraudulent identity — they originated a seemingly creditworthy applicant. The originating institution that processed the initial low-risk accounts never lost anything. The fraud is visible only in the cross-institution identity graph.

Detection signals at origination

The practical detection surface for synthetic identity at a payment processor or BNPL platform comes from several categories of signals that don't require cross-institution data sharing:

Name-SSN state of issuance mismatch. SSNs issued before 2011 encode the state of issuance in their first three digits. If a submitted application has an SSN with an Alabama issuance prefix and the applicant is claiming to be a 28-year-old resident of Seattle with no history in Alabama, that's a flag — not definitive, but an anomaly worth scoring. Identity verification providers like Socure and Persona run this check as part of their standard identity score; it's accessible via API.

Identity graph depth and consistency. A real person who is 28–35 years old typically has a verifiable trail: an address history, possibly a voter registration, some evidence of previous credit activity, a phone number that has been active for more than 6 months, an email address that predates the current application. A synthetic identity, especially a recently constructed one, tends to have shallow graph depth: a phone number provisioned in the last 90 days, an email registered within the week, no address history before 12 months ago. Graph depth is not a single feature — it's a composite of identity longevity indicators across multiple data sources.

SSN-linked identity cross-referencing. The SSN belongs to a real person. If that real person has a name and date of birth on file at the SSA — which can be checked indirectly through identity verification APIs that cross-reference SSN issuance patterns — the fraudster's submitted name and DOB may not match. A 100% mismatch is rare (experienced fraud actors get the DOB approximately right); a partial mismatch — first name plausible, last name completely unrelated — is a meaningful signal.

{
 "ssn_name_match_score": 0.32,
 "phone_first_seen_days_ago": 14,
 "email_domain_age_days": 8,
 "address_history_depth": 0,
 "device_identity_link_count": 1,
 "credit_inquiry_count_90d": 0,
 "ssn_state_applicant_match": false
}

A feature vector like this — low name-match confidence, very recently provisioned phone and email, no address history, single device, no prior credit activity — is a strong synthetic identity signal even without cross-institution data. In an internal evaluation against a synthetic transaction stream modeling BNPL origination patterns, an XGBoost model trained on this feature set achieves an AUC-ROC of 0.91 on confirmed synthetic identity cases when evaluated on held-out data. That's not a production number — live performance varies by the sophistication of the synthetic identity and the fraud network's counter-detection tactics — but it establishes that origination-time signals are predictive.

The limits of origination-time detection

We're not claiming that origination-only detection closes the synthetic identity problem. It doesn't. A well-seasoned synthetic identity — one that has been cultivated for 18+ months with consistent payment behavior and a deep enough identity graph to pass most checks — will score favorably on every origination signal listed above. The detection gap for seasoned synthetics requires behavioral monitoring post-origination: watching for the bust-out transaction pattern, the sudden utilization spike, the goods category shift. That's a continuous monitoring problem, not an origination problem.

The practical allocation for most processors and BNPL platforms should be: strong origination scoring to catch unseasoned and moderately-seasoned synthetics (which represent the bulk of synthetic ID fraud by volume), plus continuous behavioral monitoring to catch seasoned bust-out patterns (which represent more of the loss by dollar amount). The two detection layers address different sub-populations of the synthetic identity fraud distribution.

A production scenario: BNPL origination at scale

Consider a BNPL provider processing approximately 3,000 new account applications per day — a mid-scale operation by current BNPL standards. In a synthetic transaction stream modeling this origination volume with a 0.4% synthetic identity rate (consistent with published estimates for BNPL originations in the US), approximately 12 synthetic identities per day are attempting to open accounts. Of those 12, roughly 8 will be newly-constructed or lightly-seasoned synthetics with detectable origination signals: recently created contact credentials, thin identity graph, potential name-SSN inconsistencies.

The remaining 4 will be well-seasoned synthetics that will pass origination scoring. Those 4 represent the irreducible residual risk at origination — they will require post-origination behavioral monitoring to catch before the bust-out event. An origination model running at 95% recall on the detectable population (covering the 8 less-seasoned synthetics) while maintaining a 1% false positive rate adds meaningful friction for 30 legitimate applicants per day — a manageable customer impact if the review workflow is fast.

For the specific feature architecture and identity graph signals Fraudhalo uses in production origination scoring, see Synthetic Identity Detection. For the BNPL-specific context around bust-out and the origination-to-lifecycle monitoring model, see BNPL Fraud Detection.

More from the Risk Desk

View all posts