https://api.visitors.now/v1/project/hostnamesReturns the hostnames allowed to send tracking events for the project.
const res = await fetch("https://api.visitors.now/v1/project/hostnames", {
headers: { Authorization: `Bearer ${VISITORS_API_KEY}` },
});
const data = await res.json();{
"hostnames": ["visitors.now", "*.visitors.now"]
}