Skip to main content

Max HTML Size

All pages that exceed the maximum HTML size specified in Advanced settings > Report settings (default: 204,800bytes).

Priority: Low

Impact: Negative

What issues it may causeโ€‹

Large HTML pages can be slow to load and may not be fully indexed by search engines, negatively impacting both usability and SEO performance.

How do you fix itโ€‹

Use this report to identify HTML pages that exceed the Max HTML size setting and review if the size of HTML can be reduced.

What is the positive impactโ€‹

Optimising these page should result in a better user experience and potentially open up more pages to be indexed by 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
htmlSize
deeprank
level
contentSize
wordCount
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer