# Pages with Slow Server Response Time **Priority**: Critical **Impact**: Negative ## What issues it may cause The initial server response time significantly influences the overall page load time since the browser must wait for the initial response before it can start rendering the page content. In short, the knock-on effect is that nothing else can happen until the initial response is received. This may cause the following: ## How do you fix it Since there are many possible causes of slow server response times, there are various optimization strategies. First try to identify what might be causing the initial server response to be slow. Things to consider:[Learn more about server response time.](https://developer.chrome.com/docs/lighthouse/performance/server-response-time) ## What is the positive impact ## 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} ) { crawlSiteSpeedAudits(after: $after, reportType: Basic) { nodes { url auditId title displayValue savingsScore auditResult productOfSavingsKibAndPageviews productOfSavingsSecsAndPageviews savingsKib savingsSecs } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"server_response_time_failed_audits"} ```