The paths, and what each one responds to
Treating "ChatGPT SEO" as one problem produces advice that is right a third of the time. The three cases below need different work, and the difference between them is observable rather than theoretical.
| Path | What the answer is built from | What you can change |
|---|---|---|
| Training knowledge | A corpus frozen in the past | Nothing, on any useful timeline |
| Live fetch of your URL | What your server returns right now | All of it, today |
| Search results it then reads | Your classic search presence, then a fetch | Both halves |
The fetch is the part you own
Two of the three paths end with an HTTP request to your site, which is why the serving layer is the highest-leverage work available. That request runs no JavaScript, carries a token budget, and is answered by whatever your infrastructure decides to return.
- Check you are not blocking it. Assistant user agents are frequently caught by anti-scraping rules written years earlier for a different threat.
- Serve the facts without a browser. Anything rendered client-side is missing from the response entirely.
- Answer
Accept: text/markdown. Same substance, a fraction of the bytes, and canonical HTML still goes to search crawlers. - Read the miss log. The URLs assistants asked for and did not get is the most direct signal of demand you will ever have.
The third path also depends on your classic search presence, which means ordinary SEO keeps mattering here. The two disciplines feed the same pipe rather than competing for it.
What to expect, honestly
You can make yourself readable, current and cheap to retrieve. You cannot make an assistant mention you, and the same prompt can produce different answers minutes apart for reasons that have nothing to do with your site. Anyone quoting you a guaranteed placement is describing something the system does not offer.
What you can hold yourself to is the measurable layer: whether the fetch is answered, how large the response is, where the facts sit, and how the answer rate moves once you have fixed those.