Citability
Checks if your content is citable by AI agents: author, date, source.
¿Por qué importa esto?
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.
¿Cómo se soluciona?
Add a meta author tag, datePublished and dateModified in JSON-LD, and use <time datetime="..."> elements. Ensure every page has a clear author byline.
Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.
Preguntas frecuentes
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.
Ejemplo
Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.
<!-- 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>