Citability
Checks if your content is citable by AI agents: author, date, source.
Pourquoi est-ce important ?
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.
Comment le corriger ?
Add a meta author tag, datePublished and dateModified in JSON-LD, and use <time datetime="..."> elements. Ensure every page has a clear author byline.
Ce check note de 0 à 100. Sous 50 c’est un échec, 50 à 89 un avertissement, 90 ou plus c’est bon. Après chaque crawl vous voyez la note par page dans le rapport, avec une courte explication.
Questions fréquentes
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.
Exemple
Copiez le code ci-dessous et adaptez le nom de domaine, la marque et le contenu à votre situation.
<!-- 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>