# 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: ```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 pageTitleLength deeprank level pageTitleLengthPx duplicateTitle foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"short_titles"} ```