Validate a phone number and check if a WhatsApp conversation window is open.
curl --request POST \
--url https://api.zavu.dev/v1/introspect/phone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phoneNumber": "+56912345678"
}
'{
"phoneNumber": "<string>",
"countryCode": "CL",
"validNumber": true,
"nationalFormat": "(312) 945-7420",
"lineType": "mobile",
"carrier": {
"name": "Verizon Wireless",
"type": "mobile"
},
"availableChannels": [
"<string>"
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
"+56912345678"
Phone number introspection result.
"CL"
Phone number in national format.
"(312) 945-7420"
Type of phone line.
mobile, landline, voip, toll_free, unknown Carrier information for the phone number.
Show child attributes
List of available messaging channels for this phone number.
curl --request POST \
--url https://api.zavu.dev/v1/introspect/phone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phoneNumber": "+56912345678"
}
'{
"phoneNumber": "<string>",
"countryCode": "CL",
"validNumber": true,
"nationalFormat": "(312) 945-7420",
"lineType": "mobile",
"carrier": {
"name": "Verizon Wireless",
"type": "mobile"
},
"availableChannels": [
"<string>"
]
}