ChatGPT has no fixed list of results, so you can't rank in it the way you rank in Google. When it uses the web, it runs searches, opens some of the pages it finds, and writes an answer that cites what it read. So how to rank in ChatGPT comes down to being one of those pages, which is what people mean by ChatGPT SEO. Three things come first: whether OpenAI's search crawler can reach you, whether you turn up in the searches it runs, and whether the page it opens shows the answer without needing JavaScript.
I checked five guides that rank for "how to rank in ChatGPT" on 18 September 2026 (US, desktop). One cites OpenAI's own crawler documentation. None explains what a ChatGPT-User hit in your server log means, and two still describe ChatGPT as ad-free. This guide stays close to what OpenAI has published and to studies that show their numbers.
Find out what the answers say about you.
One measurement, your own crawler data, and the three access findings that matter most. Free, no card, about two minutes.
Start freeHow ChatGPT search works
Most ChatGPT conversations don't touch the web, by one measure. Profound studied about 730,000 ChatGPT conversations from late 2025 that contained a web citation. The same study reports: "About 18% of ChatGPT conversations trigger at least one web search." The rest are answered without a search, mostly from what the model learned in training, so a page you publish this week is unlikely to show up in them.
For searches made through its API, OpenAI's developer documentation describes a loop. The model "can perform web searches as part of its chain of thought, analyze results, and decide whether to keep searching." In plain terms, it can search, open a page, and look for something inside that page. OpenAI adds: "The number of sources is often greater than the number of citations." A page can be fetched and still go uncited. That documentation covers the API. I haven't found the same detail published for the app.
Answers also differ from one run to the next. SparkToro and Gumshoe found less than a 1 in 100 chance of getting the same list of brands twice. So a rank in ChatGPT is a rate: the share of answers that include you. How to measure AI visibility covers the arithmetic.
OAI-SearchBot, ChatGPT-User and GPTBot: which one matters
OpenAI runs separate crawlers and documents each one. Three matter here:
| Crawler | What it does | What blocking it costs you |
|---|---|---|
OAI-SearchBot | Surfaces sites in ChatGPT's search results | Your site "will not be shown in ChatGPT search answers, though can still appear as navigational links" |
ChatGPT-User | Fetches a page when a person's request calls for it | OpenAI says robots.txt rules "may not apply", because a user started the action |
GPTBot | Collects content that may be used to train models | No documented effect on search. It governs training use |
A fourth, OAI-AdsBot, checks the landing pages of ads.
OpenAI's publisher FAQ puts the requirement in one line: "For your site content to be included in summaries and snippets in ChatGPT, make sure you aren't blocking OAI-SearchBot." It also says "Any public website can appear in ChatGPT search." After you change robots.txt, the crawler documentation says it "can take ~24 hours" for OpenAI's systems to adjust.
Blocking GPTBot to stay out of training data is a fair choice. Blocking OAI-SearchBot by the same rule takes you out of ChatGPT's search answers.
Where ChatGPT searches
OpenAI's publisher FAQ doesn't name a search provider. It mentions URLs obtained "from a third-party search provider or by crawling other pages", which points to at least two routes: someone else's search results, and OpenAI's own crawl.
The best public test I know of points at Bing. In February 2025 Seer Interactive took 100 questions, collected the pages ChatGPT search cited, and looked for each one in the search results for the same question. 87% turned up in Bing's top 20. 56% turned up in Google. Seer calls the result directional, and I haven't found a 2026 re-run.
Google may be in the mix as well. The Information reported in August 2025 that OpenAI was using Google results scraped by a third party for some current-events queries, according to Search Engine Roundtable. I haven't found a confirmation from OpenAI.
In practice: make sure your pages show up in Bing. Bing Webmaster Tools is where you check.
What ChatGPT cites, and how fast that changes
In Profound's study, Wikipedia took 5% of ChatGPT's citations and Reddit 3%. The more useful figure is the tail: "Top 10 domains capture only 12% of all citations." The other 88% are spread across everyone else.
The mix also moves without warning. Semrush tracked 230,000 prompts across ChatGPT search, Google AI Mode and Perplexity from July to October 2025, and watched Reddit's presence fall: "ChatGPT cited Reddit in close to 60% of prompt responses in early August before collapsing to around 10% by mid-September." Semrush says "The data doesn't tell us exactly why these shifts happened."
So don't build a plan on whichever site ChatGPT favours this quarter. Measure which sources it cites for your own questions, and measure again next month.
How to rank in ChatGPT and get cited
1. Let OAI-SearchBot in
Check three places: your robots.txt, the bot rules on your CDN or firewall, and any server rule that blocks visitors by the name they announce, called the user agent. Shruwd's free crawler access check reads the first of those for you. LLM SEO: five levers with evidence has a PowerShell request that shows how your site answers OpenAI's search crawler.
2. Put the answer in the raw HTML, at a URL that still works
Vercel and MERJ analysed crawler traffic across Vercel's network in December 2024. OpenAI's crawlers didn't run JavaScript, so content that only appears after scripts run may not be there for them. The same study found that 34.82% of ChatGPT's fetches hit a 404 (page not found). Redirect pages you've moved, so an old link still lands somewhere.
3. Be findable in Bing as well as Google
In Seer's test above, most cited pages also ranked in Bing's top 20 for the same question. So aim to rank for the specific question your buyer asks, in Bing as well as Google.
4. Get mentioned on the pages ChatGPT already cites
Ahrefs studied 75,000 brands across ChatGPT, AI Mode and AI Overviews in December 2025. Mentions on YouTube had the strongest correlation with AI visibility, at about 0.74, where 1 would be a perfect match, and web mentions came in between 0.66 and 0.71. Link metrics were "very weak". A correlation shows two things rising together, not that one causes the other, so treat these as a direction.
Ask ChatGPT your buyers' questions, several times each, and note which pages it cites. Then work on getting included there.
5. Answer the question where it can be found
Put the question in a heading and the answer in the first lines beneath it, with real numbers and names. The evidence for this one is thin, and the LLM SEO guide explains why.
How to tell whether it's working
Your server logs come first, because they show what OpenAI's crawlers received. This counts their visits in your web server's access log, the file that records every request, then lists any visit that got an error:
$log = ".\access.log"
"OAI-SearchBot", "ChatGPT-User", "GPTBot" | ForEach-Object {
"{0,-14} {1}" -f $_, @(Select-String -Path $log -Pattern $_ -SimpleMatch).Count
}
Select-String -Path $log -Pattern 'OAI-SearchBot|ChatGPT-User|GPTBot' |
Where-Object { $_.Line -match '" (4|5)\d\d ' } |
Select-Object -ExpandProperty Line
OAI-SearchBot visits mean your pages are being collected for search. A ChatGPT-User visit usually means a person's request sent ChatGPT to that page just then, which is the closest thing in your logs to a citation. Lines in the second list are pages that returned an error to one of the crawlers.
The second part assumes the common log layout, where the status code follows the quoted request. If your log is laid out differently, an empty list proves nothing.
A user agent is easy to fake. OpenAI publishes the IP ranges its crawlers use, so a visit can be checked. Shruwd, the tool we are building, checks every hit against those ranges, and its docs list the crawlers it tracks.
Traffic is the second signal. OpenAI's publisher FAQ says ChatGPT adds utm_source=chatgpt.com to the links it sends, and since May 2026 Google Analytics has had an AI Assistant channel for these visits.
The third is asking. Keep a fixed list of questions, put them to ChatGPT repeatedly, and track how often you're named, with a range on the number.
What hasn't been shown to move it
Ads. ChatGPT shows ads now. OpenAI's announcement says they are "always clearly labeled and separate from ChatGPT's answers", and that "Advertising does not influence the answers ChatGPT provides."
Schema markup. Ahrefs tracked 1,885 pages that added schema. Their ChatGPT citations rose by about 2%, which was statistically indistinguishable from zero.
llms.txt. OpenAI's crawler documentation doesn't mention it. The LLM SEO guide covers both of these in full.
Frequently asked questions
Can you rank in ChatGPT?
Not in the sense of holding a position. ChatGPT writes each answer fresh, and the same question can produce a different set of sources and brands each time. What you can raise is the share of answers that cite or name you, by being reachable, findable in search and readable without JavaScript. Mentions on the pages ChatGPT already cites go with being named more often.
How do you get cited by ChatGPT?
Let OAI-SearchBot crawl your site, and check that no firewall rule turns it away. Put your answers in the page's HTML so they don't depend on JavaScript. Rank for the specific questions your buyers ask, in Bing as well as Google. Then get your brand mentioned on the pages ChatGPT already cites for those questions.
Does ChatGPT use Bing or Google?
OpenAI's publisher FAQ doesn't name one. It refers to "a third-party search provider" and to its own crawling. In Seer Interactive's February 2025 test, 87% of ChatGPT search citations matched a page in Bing's top 20, against 56% for Google. A press report says OpenAI also uses scraped Google results. I haven't found a confirmation.
How long does it take to show up in ChatGPT?
The one number I found from OpenAI is about 24 hours for its systems to pick up a robots.txt change. I found nothing from it on how fast a new page is collected. Your logs will tell you when OAI-SearchBot first fetches it.
What is SEO for ChatGPT called?
ChatGPT SEO, LLM SEO, GEO and AEO all describe it. GEO vs SEO explains the terms, and the work is mostly the same under each name.





