How the Score Is Calculated
FraudEG’s scoring pipeline runs each transaction through several parallel analysis layers and combines their outputs using a gradient-boosted machine learning model trained on hundreds of millions of labeled fraud events. Each layer contributes weighted evidence for or against risk. The layers that feed the final score are:- ML model outputs — a trained ensemble model scores the transaction against historical fraud patterns specific to your industry vertical.
- Device fingerprint — the trustworthiness and history of the device used, including whether it has been seen before, associated with fraud, or shows bot/emulator characteristics.
- Velocity checks — the rate of transactions, login attempts, or identity submissions from the same user, device, IP address, card, or email within configurable time windows.
- User history — the account’s prior transaction behavior, chargeback history, and identity verification status.
- Payment method signals — BIN-level risk, card type, issuing bank reputation, card freshness, and BIN/email mismatch detection.
- Geographic signals — IP geolocation, shipping/billing address distance, high-risk country flags, and proxy or VPN detection.
- Behavioral patterns — typing cadence, session navigation, copy-paste usage, and other session-level interaction signals collected via the FraudEG JS snippet or mobile SDK.
Score Bands
Use the following bands as a starting point for your decisioning configuration. All thresholds are fully adjustable in Platform → Risk Rules.These thresholds are defaults, not fixed rules. Adjust them per use case in Platform → Risk Rules to match your business’s risk tolerance and fraud cost model. For example, a high-value wire transfer might warrant blocking at 60, while a low-value digital purchase might allow up to 70.
The signals Array
Every score response includes a signals array alongside the numeric score. Each signal is a short, machine-readable string that explains which factors drove the score up or down. Use signals to:
- Display explanations to your fraud operations team in review queues.
- Log structured evidence alongside transactions for audit trails and chargeback disputes.
- Trigger business logic — for example, routing a transaction to manual review only when
email_high_riskis present.
Common Signal Names
Customizing Thresholds in the Rules Engine
The risk rules engine lets you override default score-band behavior with precise, no-code rules. You can create rules that combine a score range with additional conditions — for instance, block only when the score is above 70 andip_proxy_detected is present, or challenge whenever new_device appears regardless of score.
To configure rules, navigate to Platform → Risk Rules → New Rule and select:
- Trigger condition — score range, signal match, or both.
- Scope — apply the rule globally or to a specific product area (checkout, login, onboarding).
- Action — allow, challenge, or block.
- Priority — rule evaluation order when multiple rules match.
Sample Score Response
score field is the primary value to branch on in your application. The signals array gives you the supporting evidence. The decision field reflects the outcome of your configured rules engine — see Automated Fraud Decisioning for how to consume and act on decisions.