"
CiteScan

GEO Guide

How to get cited by ChatGPT.

ChatGPT increasingly cites web sources in its responses. Getting cited requires three things: allowing OpenAI's crawlers, having clearly structured and accurate content, and writing content that directly answers the questions your target audience asks.

1. Allow GPTBot and OAI-SearchBot in robots.txt

ChatGPT uses two crawlers: GPTBot (training data) and OAI-SearchBot (real-time search). If either is blocked, ChatGPT cannot read your content. Add explicit allow rules to your robots.txt.

User-agent: GPTBot
Allow: /

User-agent: OAI-SearchBot
Allow: /

2. Check for a blocking wildcard rule

A common mistake is having "Disallow: /" under "User-agent: *" — which blocks all crawlers including AI ones. Make sure your wildcard rule does not accidentally block AI crawlers.

# Wrong — blocks all crawlers
User-agent: *
Disallow: /

# Correct — block specific paths only
User-agent: *
Disallow: /api/
Disallow: /admin/

3. Write content that directly answers questions

ChatGPT is most likely to cite pages that answer a specific question clearly. Add a short, direct answer near the top of each page. Use FAQ sections. Include your answer to the most common question your audience asks.

4. Add Organization or LocalBusiness JSON-LD

JSON-LD structured data lets AI models read your entity facts (name, type, location, contact) without interpreting prose. Without it, ChatGPT may misidentify your business or miss key facts.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company",
  "url": "https://yoursite.com",
  "description": "What you do in one sentence."
}
</script>

5. Fix your meta title and description

Write a specific, accurate meta title (under 70 characters) and meta description (120–160 characters) for every important page. ChatGPT reads these as a quick summary of what each page covers.

6. Create an llms.txt file

llms.txt is a plain-text file at yoursite.com/llms.txt that tells AI systems what your site is about. It is low effort and signals that your site is AI-friendly.

# Your Site

Your Site is a [description].

## Important pages

- https://yoursite.com/ — homepage
- https://yoursite.com/about — about

## Allowed use

AI search engines may crawl and cite all public pages.

7. Check your readiness score

Run a free scan on AI Search Ready to see your current citation readiness score, per-crawler access status, and a prioritised fix list. The scan checks your robots.txt, meta tags, JSON-LD, content depth, and more.

Free full report

Check your own site now.

Paste your URL and a target query. Get a citation readiness score, per-crawler breakdown, and copy-paste fixes in under 20 seconds.

Run a free scan →

Frequently asked

Does blocking GPTBot prevent ChatGPT from mentioning my site?

Yes. If GPTBot is blocked, OpenAI cannot collect training data from your site. If OAI-SearchBot is also blocked, your site won't appear in ChatGPT Search results. Unblocking both is the single highest-impact action for ChatGPT visibility.

How long does it take to see results after allowing GPTBot?

It varies. OpenAI crawls the web continuously but does not publish crawl frequency by site. Most sites see the effect within weeks to months. High-authority sites may be re-crawled sooner.

Can I get ChatGPT to cite specific pages?

You cannot submit specific pages to ChatGPT for citation the way you can submit to Google Search Console. The best approach is to ensure the page is crawlable, answers a specific question clearly, and has accurate JSON-LD and meta tags.

Related guides

how to get cited by perplexityoptimize meta tags for ai searchgptbot vs oai searchbot