# Pages without AI Referral Sessions **Priority**: High **Impact**: Negative ## What issues it may cause Content that is invisible to AI referrals is not contributing to your brand's presence or authority within this new discovery ecosystem. ## How do you fix it Analyze these pages for optimization opportunities. Enhance content quality, improve internal linking from successful pages, and ensure they are aligned with topics likely to be surfaced in generative answers to improve their chances of attracting AI referral traffic. ## What is the positive impact These pages represent a missed opportunity for visibility and traffic from the growing audience using generative search. Your competitors may be capturing this traffic instead. ## 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 deeprank level aiSessions httpStatusCode indexable foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_without_ai_referral_sessions"} ```