Prevent abuse of referral bonuses and promotional offers.
Fraudsters exploit referral programs by creating multiple accounts with disposable phone numbers to claim bonuses repeatedly. This costs companies millions in fraudulent payouts.
Validate phone numbers before crediting referral bonuses. Detect disposable numbers and flag accounts using them for manual review or bonus denial.
const res = await fetch("https://api.apiverve.com/v1/disposablephone?phone=%2B12085813945", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);