# Pages with AI Referral Sessions **Priority**: None **Impact**: Positive ## What issues it may cause Understanding which pages attract AI referrals allows you to identify your most successful content for this emerging channel and analyze its performance. ## How do you fix it Review these successful pages to understand what topics and formats are resonating with AI platforms. Ensure they are well-optimized for user experience and conversions to maximize the value of this traffic. ## What is the positive impact This is a positive signal indicating that your content is being surfaced and clicked on within AI-driven experiences. These pages are your current entry points for generative search traffic. ## 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 aiSessions aiUsers aiPageviews aiBounceRate aiSourceBreakdown httpStatusCode indexable foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_ai_referral_sessions"} ```