Reputation: 135
I saw that Twilio's Lookup API can tell you whether a phone number is landline, mobile, or voip, as well as what the carrier is. Is there any functionality or possibility of telling whether a number is disconnected or not, similar to what RealPhoneValidation does?
For example, I looked up a disconnected phone number in RealPhoneValidation and this was the output, versus the Twilio Lookup API only provided the line type and carrier.
Upvotes: 1
Views: 826
Reputation: 7414
By default, Twilio Lookup API does not provide information on phone number’s connection status with provider.
Twilio Lookup API allows for “addons”, one of which being the “payfone” addon that uses another service (payfone) to determine phone connection status.
Twilio Lookup API: https://www.twilio.com/docs/lookup/api
Twilio addons: https://www.twilio.com/docs/add-ons
Twilio Payfone addon: https://www.twilio.com/docs/add-ons/quickstart#using-the-payfone-lookups-add-on
Upvotes: 2