Skip to main content

Short Titles

All indexable pages with a title tag less than the minimum title length specified in Advanced settings > Report settings (default: 10 characters).

Priority: Low

Impact: Negative

What issues it may causeโ€‹

When the titles of your pages are very short, search engines are more likely to generate them dynamically giving you less control of how they appear in the search results pages.

How do you fix itโ€‹

Use this report to identify pages that can be updated with a longer and more detailed title tag.

What is the positive impactโ€‹

Well crafted and written page titles can result in higher click-through-rates from search results pages to your website effectively increasing traffic to your website for the same ranking positions.

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
pageTitleLength
deeprank
level
pageTitleLengthPx
duplicateTitle
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer