type Abstractapi = {
apiKey: string
}
export async function main(resource: Abstractapi, phone: number, countryCode?: string) {
const queryParams = new URLSearchParams({
api_key: resource.apiKey,
phone: phone.toString()
})
if (countryCode) {
queryParams.append('country', countryCode)
}
const endpoint = `https://phonevalidation.abstractapi.com/v1?${queryParams.toString()}`
const response = await fetch(endpoint, {
method: 'GET'
})
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}
const data = await response.json()
return data
}
Submitted by hugo697 72 days ago