# Pages with Low H1 Relevance **Priority**: Critical **Impact**: Negative ## What issues it may cause A low h1 relevance score means this element doesn't represent what users are searching for. This misalignment weakens the page's relevance signal to search engines. ## How do you fix it Review the top-performing queries and rewrite the h1 to clearly address user intent. Focus on clarity, keyword alignment, and accurate reflection of the content. ## What is the positive impact Low h1 relevance can lower rankings, reduce click-through rates, and confuse users about the page's purpose. ## How to fetch the data for this report template You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query: ```graphql query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlUrls(after: $after, reportType: Basic) { nodes { pageTitle url h1Tag foundAtSitemap h1TagRelevance searchConsoleTotalClicks searchQueriesSummary foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"low_h1_relevance"} ```