# Non-200 Mobile/AMP URLs which were found within the mobile/AMP rel alt tag of another page, but which return a non-200 HTTP status code **Priority**: High **Impact**: Negative ## What issues it may cause URLs which are referenced as a mobile or AMP alternate from another page should return a 200 HTTP status code. Error pages (4xx/5xx) will mean that the mobile alternate page is unable to be indexed. A 3xx status code may still mean the destination URL will be indexed (assuming it has a correct reciprocal link), however will unnecessarily consume crawl budget. This issue may result in: ## How do you fix it Use this report to ensure that either your pages are designed for mobile devices e.g. responsive design or have valid mobile alternate pages that return 200 HTTP status code. You can use tools like [Mobile Friendly Test](https://search.google.com/test/mobile-friendly) to understand if your pages are configured correctly for mobile devices. ## What is the positive impact Having pages that are valid and well optimised for mobile devices results in good user experience and higher rankings in search engine results pages which translates into more visits and conversions. ## 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 desktopUrl canonicalUrl foundAtUrl deeprank level httpStatusCode isRedirect redirectCount redirectedToStatusCode redirectedToUrl foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"non_200_separate_mobile_amp"} ```