Skip to main content

Low Pageviews per Session

Pages with low pageviews per session (less than 1.5)

Priority: Low

Impact: Negative

What issues it may causeโ€‹

Organic landing pages that generate a low number of pageviews per session are more likely to result in a bounce back to search engine's results pages which can be a signal to the search engine that the page is a poor quality result. This may degrade the rankings for the specific page and potentially all pages on the site.

How do you fix itโ€‹

The content of the pages should be reviewed and improved to satisfy any search queries the pages rank for.

Related links to other pages could be added to increase the chances a user will view another page, and reducing the chances of a bounce or exit from the page.

What is the positive impactโ€‹

Visitors who arrive from search results will have a better user-experience and a lower rate of bounce back to search results. This may positively impact the rankings and increase traffic.

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 GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlUrls {
pageTitle
url
description
foundAtUrl
gaVisits
deeprank
level
gaPageviewsPerVisits
gaVisitBounceRate
gaAvgTimeOnPage
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer