Optimize your SMS campaigns with precise carrier detection across 232 countries. Learn how to identify mobile networks, line types, and optimize delivery to reduce SMS costs by 40%.
Carrier detection identifies the mobile network operator (MNO) and line type for any phone number. This includes determining if it's mobile, landline, VoIP, or premium rate, plus the specific carrier.
Verizon Wireless
AT&T Mobility
T-Mobile USA
AT&T Fixed Line
Comcast Business
CenturyLink
Google Voice
Skype Number
Vonage Business
// Real-time validation with ip-info.app API async function validatePhone(phone) { const response = await fetch(`https://api.ip-info.app/v1-get-phone-details?phone=${phone}`, { headers: { 'accept': 'application/json', 'x-api-key': 'YOUR_API_KEY' } }); const result = await response.json(); if (result.type === 'VOIP') { return { valid: false, message: "VoIP numbers are not allowed for security", suggestion: "Please use a mobile or landline number" }; } return { valid: true, carrier: result.carrier, number: result.number, country: result.country }; }
Show warning for VoIP numbers but allow registration. Track for analysis.
Allow registration but restrict premium features until SMS verification.
Block registration entirely. Recommended for high-value services.
Join 25,000+ companies using our API to detect carriers and reduce SMS costs by 40%