const response = await fetch(
"https://api.telewing247.com/api/api/v1/public/virtual-numbers/usa/rent",
{
method: "POST",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: "Bearer ak_YOUR_API_KEY_HERE",
},
body: JSON.stringify({
service_code: "whatsapp",
}),
}
);
const data = await response.json();