cd /news/artificial-intelligence/what-is-aeo-how-to-get-chatgpt-perpl… · home topics artificial-intelligence article
[ARTICLE · art-14126] src=dev.to pub= topic=artificial-intelligence verified=true sentiment=↑ positive

What is AEO? How to Get ChatGPT, Perplexity & AI Search Engines to Cite Your Website — 2026 Guide

A new optimization strategy called Answer Engine Optimization (AEO) is emerging as a way for websites to get cited by AI search engines like ChatGPT, Perplexity, and Gemini. Unlike traditional SEO, which targets human searchers with keywords and backlinks, AEO uses structured data like FAQPage JSON-LD schema, question-format headings, and definition-style content to make websites more parseable by AI crawlers. The approach also leverages emerging standards like the `llms.txt` file to explicitly tell AI bots which pages to read and cite.

read5 min publishedMay 26, 2026

Open ChatGPT. Ask it: "What's a good Threads automation tool?"

It gives you an answer. But whose website does it cite?

Not yours.

Even if your product is the best on the market, even if your blog has the most detailed tutorials — if AI search engines can't parse your website structure, you don't exist.

That's the problem AEO solves.

SEO AEO
Goal
Rank high on Google search Get cited as an answer by AI engines
Audience
Human searchers ChatGPT, Perplexity, Gemini, Grok
Key Metrics
Rankings, CTR, traffic Citation count, source attribution
Core Tech
Keywords, backlinks, page speed Structured data, FAQ Schema, llms.txt
Content Format
Long-form, images, video Direct answers, lists, definition patterns
Competition
Red ocean — everyone's doing it Blue ocean — almost nobody's doing it

Key point: AEO doesn't replace SEO — it's a layer on top. Good SEO makes AEO even more effective.

Traditional search: User searches → clicks your website → reads content

AI search: User asks a question → AI gives the answer directly → may or may not cite you

If AI doesn't cite you, the user doesn't even know your website exists.

Almost nobody is doing AEO yet. Search for "AEO optimization" and most results are thin, generic content. The market is wide open.

Start now and you're among the earliest adopters. Like people who started doing SEO in 2010.

AI engines love structured Q&A. If your website has FAQPage JSON-LD schema, the probability of AI extracting your content as an answer increases dramatically.

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "What is AEO?",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "AEO is Answer Engine Optimization — optimizing your website content so AI search engines like ChatGPT, Perplexity, and Gemini can directly cite your site as an answer source."
    }
  }]
}

Action item: Wrap your website's FAQs in FAQPage schema.

AI engines scan your <h2>

and <h3>

tags. If headings are in question format, AI is more likely to treat the following content as an answer.

Bad: Our Services

Good: What services does Ultra Lab provide?

Bad: Pricing Plans

Good: How much does it cost to build a SaaS?

Bad: Technical Architecture

Good: How to build a SaaS with React and Firebase?

Action item: Rewrite your H2/H3 tags into What/How/Why question format.

AI engines prefer sentences that can be directly extracted as definitions.

Bad: Regarding our diverse range of automation solutions, we offer a multifaceted approach...

Good: AEO is Answer Engine Optimization, which makes AI search engines cite your website.

Formula: [Noun] is [definition], [one-sentence value statement].

When AI sees this pattern, it extracts it directly as an answer.

Beyond FAQ, these schemas also boost your AEO score:

Schema Purpose Priority
FAQPage
Q&A content Must-have
Article / BlogPosting
Article content Must-have
BreadcrumbList
Navigation structure Recommended
Organization
Brand entity Recommended
HowTo
Tutorial steps Bonus
WebSite
Basic site info Baseline

Action item: Add at least FAQPage + Article + Organization schemas.

llms.txt

is an emerging standard (llmstxt.org) that tells AI crawlers what your website contains and which pages to read.


> AI Product Studio — LLM-powered automation infrastructure

## Products
- [MindThread](https://mindthread.tw): Threads automation SaaS
- [UltraProbe](https://ultralab.tw/probe): AI security scanner

## Blog
- [What is AEO](https://ultralab.tw/en/blog/what-is-aeo-guide)
- [AI Agent Token Optimization](https://ultralab.tw/en/blog/ai-agent-token-optimization)

Place it at /llms.txt

in your website root. AI crawlers will automatically read it.

Your robots.txt

determines which AI bots can crawl your site:

User-agent: GPTBot
Allow: /

User-agent: PerplexityBot
Allow: /

User-agent: ClaudeBot
Allow: /

User-agent: Bytespider
Disallow: /

Key decision: You want AI search engines to read your content (so they'll cite you), but you may want to block crawlers that only scrape for training data.

When AI engines decide whether to cite you, they look for these signals:

<meta name="author">

  • JSON-LD author fielddatePublished

and dateModified

(AI prefers fresh content)<meta name="rights">

  • footer copyrightAction item: Ensure every page has author, date, and rights meta tags.

AI crawlers use HTML5 semantic tags to understand page structure:

<main>        <!-- Main content lives here -->
  <article>   <!-- This is a standalone article -->
    <h1>Title</h1>
    <p>Content...</p>
  </article>
  <nav>       <!-- This is navigation -->
    ...
  </nav>
</main>

Bad: Everything wrapped in <div>

→ AI can't tell what's important

Good: Using <main>

, <article>

, <nav>

, <section>

→ AI extracts content accurately

We scanned our own website (ultralab.tw) using our UltraProbe AEO Scanner.

First scan: Grade C (69/100)

Main issues:

datePublished

/ dateModified

<meta name="rights">

or <meta name="ai-content-declaration">

After fixes: Grade A (96/100)

What we did:

datePublished

, dateModified

, copyrightHolder

to WebSite schema<meta name="rights">

, <meta name="dcterms.rights">

, <meta name="ai-content-declaration">

<ul>

lists and direct answer pattern sentencesrel="noopener noreferrer"

From C to A in 30 minutes. Because the foundation (JSON-LD, FAQPage schema) was already there — we just needed to add the specific signals AI search engines care about.

Want to know what your website looks like to AI search engines?

** UltraProbe AEO Scanner** — Free, instant, no signup required.

Enter your URL. Get a full report in 5 seconds:

Scanning is done server-side with pure HTML parsing. No AI, no data stored, $0 cost.

Before you scan, do a self-check:

<meta name="author">

?datePublished

/ dateModified

?<meta name="rights">

?<main>

, <article>

)?If you can check 7 or more, you're already ahead of 95% of websites.

SEO took 20 years to become mandatory. AEO won't take that long.

AI search engine users are doubling every month. While your competitors are still debating whether to invest in SEO, you can skip ahead — get AI to cite you directly.

Here's what to do:

If you need a complete AEO overhaul (llms.txt setup, 7+ JSON-LD schemas, AI Crawler strategy, Pre-render Shell), contact us.

Written by Ultra Lab. Our own website AEO score is A (96/100) — scan and see.

Originally published on Ultra Lab — we build AI products that run autonomously.

Try UltraProbe free — our AI security scanner checks your website for vulnerabilities in 30 seconds: ultralab.tw/probe

── more in #artificial-intelligence 4 stories · sorted by recency
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/what-is-aeo-how-to-g…] indexed:0 read:5min 2026-05-26 ·