https://api.visitors.now/v1/project/blocked-pathnamesReturns pathnames blocked from being tracked.
const res = await fetch("https://api.visitors.now/v1/project/blocked-pathnames", {
headers: { Authorization: `Bearer ${VISITORS_API_KEY}` },
});
const data = await res.json();{
"blockedPathnames": ["/admin/*"]
}