Check if a number can receive SMS or WhatsApp messages.
Verify if a phone number is valid and properly formatted in seconds.
Identify the mobile carrier and line type (mobile, landline, VoIP).
Check which messaging channels the number can receive (SMS, WhatsApp).
Need to validate phone numbers programmatically? Use our Phone Validator API.
import Zavudev from '@zavudev/sdk';
const client = new Zavu({ apiKey: process.env.ZAVU_API_KEY });
const result = await client.introspect.validatePhone({
phoneNumber: '+15551234567'
});
console.log(result);
// {
// phoneNumber: '+15551234567',
// validNumber: true,
// countryCode: 'US',
// nationalFormat: '(555) 123-4567',
// lineType: 'mobile',
// carrier: { name: 'Verizon Wireless', type: 'mobile' },
// availableChannels: ['sms', 'whatsapp']
// }Get started with Zavu and reach your customers on every channel.