# Pages with Duplicate Body All pages with body content shared with at least one other page in the same crawl. **Priority**: Critical **Impact**: Negative ## What issues it may cause Pages with duplicated or similar content should be avoided as they may not be indexed and can result in crawl inefficiency and dilution of PageRank. ## How do you fix it Pages that have near duplicate page body content with another page should be reviewed and either updated to include more unique text or redirected to the primary version. ## What is the positive impact
  1. Reducing the amount of duplicate pages in search engine's indexes can save crawl budget for more important pages and avoid the dilution of PageRank helping the remaining pages to rank better.
  2. Canonicalised or redirected pages will be crawled less often, improving crawl efficiency and saving on server costs.
## 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 duplicateBodyPrimaryUrl foundAtUrl duplicateBodyCount deeprank level duplicatePage duplicateTitle duplicateDescription duplicateBody foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"duplicate_body_content"} ```