// import twilio from 'twilio' // const accountSid = 'ACf0d397ceb325114e435237056465b495' // const authToken = 'c23f40f96b936e837bc6da105bf9150e' // const client = twilio(accountSid, authToken) // client.messages // .create({ // body: 'Hello from Twilio', // from: '+18559534242', // to: '+18583199738' // }) // .then((message) => console.log(message.sid)) import axios from 'axios' axios .get('https://lookups.twilio.com/v1/PhoneNumbers/14084220298?CountryCode=US&Type=carrier', { headers: { Authorization: 'Basic ' + btoa('ACf0d397ceb325114e435237056465b495' + ':' + 'c23f40f96b936e837bc6da105bf9150e') } }) .then((res) => { console.log(res.data) })