Skip to main content

Max Content Size

All pages with more than a maximum content size specified in Advanced settings > Report settings (default: 51,200bytes).

Priority: Low

Impact: Negative

What issues it may causeโ€‹

Pages with a very large amount of body content may not be fully indexed, although the limit is linked to your page authority and can differ across different sites.

The size of pages can affect the speed at which they will be delivered to users and as a result can negatively impact user experience.

How do you fix itโ€‹

Use the report to identify large content pages that can be either optimised or broken into multiple pages.

What is the positive impactโ€‹

Optimising these page should result in a better user experience and potentially open up more pages to be indexed in search engines and drive more relevant and high quality traffic to your website.

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
contentSize
deeprank
level
htmlSize
wordCount
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer