AI SEO

FAQ structured data

Checks for FAQPage schema - the most consumed schema by AI for direct answers.

Why does this matter?

FAQPage schema is the most direct path to AI citations. ChatGPT, Google AI Overviews and Perplexity use FAQ data to provide direct answers. A well-structured FAQ schema can multiply your traffic from AI sources.

How to fix it?

Add FAQPage JSON-LD with a mainEntity array. Each question is a Question with name (the question) and acceptedAnswer with text (the answer). Minimum 3 questions for optimal impact.

This check scores from 0 to 100. Below 50 is a fail, 50 to 89 is a warning, 90 or above is good. After each crawl you see the score per page in your report, with a short note on what we found.

Frequently asked questions

Checks for FAQPage schema - the most consumed schema by AI for direct answers.

FAQPage schema is the most direct path to AI citations. ChatGPT, Google AI Overviews and Perplexity use FAQ data to provide direct answers. A well-structured FAQ schema can multiply your traffic from AI sources.

Add FAQPage JSON-LD with a mainEntity array. Each question is a Question with name (the question) and acceptedAnswer with text (the answer). Minimum 3 questions for optimal impact.

Example

Copy the code below and adapt the domain name, brand name and content to your situation.

<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "FAQPage",
    "mainEntity": [
        {
            "@type": "Question",
            "name": "How much does SEO cost?",
            "acceptedAnswer": {
                "@type": "Answer",
                "text": "SEO costs vary widely. DIY SEO is free but time-intensive. An agency charges €500-€3,000 per month."
            }
        },
        {
            "@type": "Question",
            "name": "How long does it take to see SEO results?",
            "acceptedAnswer": {
                "@type": "Answer",
                "text": "On average 3-6 months for noticeable results, depending on competition and domain authority."
            }
        }
    ]
}
</script>
Start free