# Poor Engagement
Pages with a high bounce rate (over 50%) but a high average time on page (above 30 seconds)
**Priority**: Low
**Impact**: Negative
## What issues it may cause
Pages with a high bounce rate may provide users with a poor user experience and are more likely to result in a bounce back to the search engines which could negatively impact rankings for these specific pages and potentially impact the ranking of all pages on the site.
## How do you fix it
-
Review the search terms which the page is ranking for, and try improve the content to [better satisfy the queries by
being more helpful](https://developers.google.com/search/blog/2022/08/helpful-content-update).
- Add calls-to-action and links to other related pages on the site.
## What is the positive impact
Improving the engagement score of these pages by reducing the bounce rate will increase their chances to rank higher in search engine results pags and drive more visits and conversions.
## 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
description
foundAtUrl
gaVisits
deeprank
level
gaVisitBounceRate
gaAvgTimeOnPage
gaPageviewsPerVisits
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}
```
**Variables:**
```json
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"poor_engagement"}
```