'Does ChatGPT Mention My Brand?' Is Three Different Questions Merlonix, a developer tools company, explains that the question 'Does ChatGPT mention my brand?' actually encompasses three distinct signals: presence in the answer text, presence in cited sources, and accuracy of the cited claim. The company argues that these signals succeed and fail independently, and measuring only one can lead to incorrect conclusions about brand visibility in AI-generated answers. Originally published on the Merlonix blog. A growing share of buyers no longer type a query into Google and scan ten blue links. They ask ChatGPT, Perplexity, or Google's AI overview a question in plain language — "what's the best uptime monitoring for agencies?" — and act on the synthesized answer. So a reasonable new question to ask about your own brand is: when a buyer asks the engine, does it mention me? That question sounds binary. It isn't. "Mentioned" quietly bundles together three separate things that succeed and fail independently, and if you measure only the loudest of them you'll draw the wrong conclusion about where you actually stand. Before you can monitor answer presence, you have to know which signal you're monitoring. The first place a brand can appear is in the text of the answer itself — the engine writes "tools like Acme and Globex are popular for this," and your name is in the sentence. This is what most people picture when they say "mentioned," and it's the easiest to check: take the answer string, lowercase it, and look for your brand name. answer.toLowerCase .includes brandName.toLowerCase → named in prose It's also the signal most likely to flatter you and most likely to mislead you, for the same reason: a substring match doesn't know context. "Acme" matches inside "Acme Corp," which is good, but a short or common brand name can match inside an unrelated word, and being named in a sentence that says "avoid Acme" counts identically to a glowing recommendation. Presence in the prose is real, but it is the start of the measurement, not the end of it. Modern answer engines — Perplexity's Sonar models, ChatGPT with search, Google's AI overview — don't just generate prose. They cite sources : a list of the URLs the engine actually pulled from to compose the answer. And here is the part that a naive "is my name in the text?" check misses entirely: your domain can be in the citations without your name being in the prose, and vice versa. The engine can read your page, use it to shape the answer, and link it as a source — while writing a summary sentence that never says your name. To a prose-only checker you're absent. To a buyer clicking the sources, you're right there. The two signals are detected differently, too: prose is a name match, citations are a hostname match against your registrable domain. js citations.some url = hostnameOf url .includes yourDomain → present in sources So "am I mentioned?" is already two questions — named in the answer and linked in the sources — and they don't move together. A serious measurement reports which one fired, because the fix is different for each. Missing from the prose but present in the citations is a positioning problem; missing from both is a visibility problem. Here's the signal almost nobody checks, and the one that can hurt the most. An answer engine can name you, cite you, and get you wrong. It can state a price you retired a year ago, attribute a feature you don't have or miss one you do , or confuse you with a similarly named competitor. Because generative answers are synthesized rather than quoted, a citation is a claim the model made about your page, not a guarantee it read it correctly. "Cited" and "cited accurately" are different states, and only the second one actually helps you. A confident answer that recommends you with the wrong price attached can cost you a sale at the exact moment of intent — worse than being absent, because it looks like a win in any tool that stops at "you were mentioned." Measuring presence honestly means holding the cited answer up against your real, declared facts and flagging the mismatch, not just celebrating the mention. If you've done the AI-legibility work — a clean robots.txt for AI crawlers https://merlonix.com/blog/robots-txt-ai-crawlers/ , an llms.txt https://merlonix.com/blog/what-is-llms-txt/ curation file, JSON-LD structured data https://merlonix.com/blog/json-ld-structured-data-for-ai-answer-engines/ — it's tempting to treat the job as done. It isn't, and conflating the two is the most common mistake here. That work makes you legible : it ensures an engine can read and understand you. None of it makes you cited : whether the engine chooses to name or link you, over a competitor, for a specific buyer's question. Legibility is necessary and it is configurable — you can verify it by inspecting your own files. Citation is neither. It's an outcome , decided by the model for each question, and the only way to know it is to ask the engine the buyer's actual question and look at what came back. You can be perfectly crawlable and never cited. You find that out by measuring the answer, not by auditing your markup. Put the three signals together and the method is straightforward, if you keep it honest: answer text , citation url , or neither, because they mean different things.That last point is why answer presence is a monitoring problem, not an audit. Unlike a meta tag, there's nothing to "set" — the answer is recomputed every time someone asks, so the only honest posture is to keep asking. The one-line version: "is my brand in the AI answer?" is three questions — named in the prose, present in the citations, and described correctly — and being crawlable answers none of them. Only asking the engine does. The free AI answer-presence checker https://merlonix.com/tools/answer-presence/ does exactly this for one question at a time: enter your brand and a question your buyers actually ask, and it sends that question to a live answer engine, then tells you whether you appeared in the answer text, in the citations, or not at all — the real excerpt, not a simulation, and nothing stored. No signup, one check at a time. A one-off check is a snapshot, though, and citations drift without warning — you find out you've dropped out of the answer only after the buyers already have. Merlonix monitors answer presence continuously: multiple buyer questions across multiple engines, on a schedule, with history and an alert the moment a citation you had disappears — and, when you're cited, a check of the answer against your declared facts. It's the same continuous-from-outside posture Merlonix takes to whether AI crawlers can read you at all https://merlonix.com/tools/agent-readiness/ and to SSL and DNS https://merlonix.com/tools/domain-health/ — the difference between auditing your setup once and knowing, every day, what buyers are actually being told. Run the free answer-presence check https://merlonix.com/tools/answer-presence/ to see where you stand right now, and browse the rest of the free tools https://merlonix.com/tools/ while you're there.