AI SEO

Citability

Checks if your content is citable by AI agents: author, date, source.

Warum ist das wichtig?

AI agents prefer to cite content with a clear author, publication date and source. These are the core criteria that determine whether AI presents your content as an answer to users.

Wie beheben Sie es?

Add a meta author tag, datePublished and dateModified in JSON-LD, and use <time datetime="..."> elements. Ensure every page has a clear author byline.

Dieser Check bewertet von 0 bis 100. Unter 50 ist ein Fail, 50 bis 89 eine Warnung, 90 oder höher ist gut. Nach jedem Crawl sehen Sie die Note pro Seite im Report, mit einer kurzen Erklärung.

Häufige Fragen

Checks if your content is citable by AI agents: author, date, source.

AI agents prefer to cite content with a clear author, publication date and source. These are the core criteria that determine whether AI presents your content as an answer to users.

Add a meta author tag, datePublished and dateModified in JSON-LD, and use <time datetime="..."> elements. Ensure every page has a clear author byline.

Beispiel

Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.

<!-- 1. Meta author in <head> -->
<meta name="author" content="John Smith">

<!-- 2. Visible date on the page -->
<p>Published: <time datetime="2026-01-15">January 15, 2026</time>
   Updated: <time datetime="2026-03-14">March 14, 2026</time></p>

<!-- 3. Article JSON-LD with author and dates -->
<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "Article",
    "headline": "SEO tips for 2026",
    "datePublished": "2026-01-15",
    "dateModified": "2026-03-14",
    "author": {
        "@type": "Person",
        "name": "John Smith",
        "url": "https://www.yourdomain.com/authors/john-smith/"
    }
}
</script>
Kostenlos starten