All AI Bots Log Summaries
Priority: None
Impact: Neutral
What issues it may cause
Low bot traffic can signal that AI systems are overlooking or misinterpreting your content, reducing its chances of being surfaced, summarized, or recommended in search and generative experiences.
How do you fix it
Improving technical accessibility, enhancing structured data, and ensuring clear, high-quality content can help AI systems crawl, interpret, and feature your pages more effectively across search and generative platforms.
What is the positive impact
AI bot activity reveals how well your content is being discovered, evaluated, and indexed by emerging AI systems, influencing its visibility and authority across search and generative platforms.
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:
- Query
- Variables
- cURL
query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlLogSummariesAiBots(after: $after, reportType: Basic) {
nodes {
aiBot
logRequests
platform
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"all_logsummaries_ai_bots"}
curl -X POST -H "Content-Type: application/json" -H "apollographql-client-name: docs-example-client" -H "apollographql-client-version: 1.0.0" -H "x-auth-token: YOUR_API_SESSION_TOKEN" --data '{"query":"query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlLogSummariesAiBots(after: $after, reportType: Basic) { nodes { aiBot logRequests platform } totalCount pageInfo { endCursor hasNextPage } } } }","variables":{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"all_logsummaries_ai_bots"}}' https://api.lumar.io/graphql