AI SEO

Entity & topic clarity

Checks if your page clearly identifies which entity or organization is behind it.

¿Por qué importa esto?

AI agents need to know who you are to cite you as a source. Without clear entity identification (Organization schema, about page, og:site_name), AI can't link you to your brand or expertise.

¿Cómo se soluciona?

Add Organization or Person JSON-LD schema with name, URL and logo. Use og:site_name, a meta author tag and link to an about page. Be consistent in naming across all pages.

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 page clearly identifies which entity or organization is behind it.

AI agents need to know who you are to cite you as a source. Without clear entity identification (Organization schema, about page, og:site_name), AI can't link you to your brand or expertise.

Add Organization or Person JSON-LD schema with name, URL and logo. Use og:site_name, a meta author tag and link to an about page. Be consistent in naming across all pages.

Ejemplo

Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.

<!-- 1. Organization JSON-LD in <head> -->
<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "Organization",
    "name": "YourBrand",
    "url": "https://www.yourdomain.com",
    "logo": "https://www.yourdomain.com/images/logo.png",
    "description": "Short description of what you do."
}
</script>

<!-- 2. og:site_name in <head> -->
<meta property="og:site_name" content="YourBrand">

<!-- 3. Author meta tag -->
<meta name="author" content="YourBrand">

<!-- 4. Link to about page in footer -->
<a href="/about/" rel="author">About YourBrand</a>
Empezar gratis