AI traffic
Visitors who arrived from an AI assistant’s answer — ChatGPT, Perplexity, Claude, Gemini, Copilot. A fast-growing channel as people ask AIs instead of searching.
AI visitors
0
Share of traffic
0.0%
AI visits
0
Assistants
0
No AI traffic yet
When someone clicks through to your site from ChatGPT, Perplexity, Claude, Gemini or Copilot, it shows up here. Publishing clear, citable content is the best way to earn it.
AI & bot crawlers
AI assistants (ChatGPT, Claude, Perplexity…), search crawlers (Googlebot, Bingbot…) and model-training bots (GPTBot, ClaudeBot, CCBot…) that fetch your pages as raw HTML — invisible to the JS tracker. Reported from your backend.
No crawler hits recorded yet. Add the one-line server-side beacon below and you’ll start seeing exactly which AIs and bots fetch your pages — we run the crawler catalog server-side, so you never redeploy to pick up new bots.
export default {
async fetch(req, env, ctx) {
const res = await fetch(req);
ctx.waitUntil(fetch("https://mrkr.app/api/data/crawl", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
site: "site_demo",
ua: req.headers.get("user-agent"),
path: new URL(req.url).pathname,
}),
}).catch(() => {}));
return res;
},
};