Skip to main content

Pages with Low Title Relevance

Priority: Critical

Impact: Negative

What issues it may cause

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

What is the positive impact

Low title 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
foundAtSitemap
pageTitleRelevance
searchConsoleTotalClicks
searchQueriesSummary
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}

Try in explorer