# Max Title Length All pages with an HTML title exceeding the max length specified in Advanced settings > Report settings (default: 600 pixels). **Priority**: Low **Impact**: Negative ## What issues it may cause Page titles over 600 pixels may be truncated in search engine results pages, potentially negatively impacting click-through-rates and traffic. ## How do you fix it The page titles should be reviewed and customised for each page to fit within the display limit. ## What is the positive impact Search engines are more likely to use the provided title in full, potentially increasing the click-through-rate and traffic from search results pages. ## 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 pageTitleLengthPx deeprank level pageTitleLength duplicateTitle foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"max_title_length"} ```