Skip to main content

Pages with Low Content Relevance

Priority: High

Impact: Negative

What issues it may cause

A low content 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 content to clearly address user intent. Focus on clarity, keyword alignment, and accurate reflection of the content.

What is the positive impact

Low content 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:

query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlUrls(after: $after, reportType: Basic) {
nodes {
pageTitle
url
mainContent
foundAtSitemap
mainContentRelevance
searchConsoleTotalClicks
searchQueriesSummary
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}

Try in explorer