Twilio has a lookup API, which returns the subscriber name and carrier.
Here's an example response (subscriber name redacted):
{
"data": {
"name": "LASTNAME, FIRSTNAME",
"line_provider": "Google/Bandwidth.com (SVR)",
"carrier": "Bandwidth.com",
"line_type": "landline"
}
}
Ah, I always assumed Google uses Bandwidth.com completely transparently – I wasn't aware there's a separate level of "line provider" look-up available. Thank you!