Skip to main content

Target Search Queries with High Relevance Landing Pages

Priority: None

Impact: Neutral

What issues it may cause

High relevance landing pages can lose their edge if content becomes outdated, competitors improve their coverage, or page changes inadvertently reduce alignment with the target query. Without regular monitoring, strong relevance scores can degrade without notice.

How do you fix it

  • Review these pages periodically to ensure content remains accurate and up to date
  • Monitor for relevance score changes between crawls to catch any degradation early
  • Use this report as a baseline to protect your strongest target query coverage

What is the positive impact

Well-optimised landing pages for target queries give your site the strongest foundation to rank competitively for strategic queries, supporting both visibility and organic traffic growth.

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:

Operation: query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlSearchQueries(after: $after, reportType: Basic) { nodes { searchQuery searchQueryRelevance searchVolume landingPagesCount landingPagesSummary } totalCount pageInfo { endCursor hasNextPage } } } }Variables: {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"target_queries_with_high_relevance_landing_page"}
GetReportStatForCrawlTry in Explorer
GraphQL
query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlSearchQueries(after: $after, reportType: Basic) {
nodes {
searchQuery
searchQueryRelevance
searchVolume
landingPagesCount
landingPagesSummary
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}