CRUX Domain Summary
This report shows CrUX metrics for a primary domain and other discovered domains from a crawl. It includes key metrics like CLS, FCP, INP, LCP, and TTFB, with URLs Count reflecting the number of URLs crawled per each domain. The trend graphs display weighted averages across domains, with domains with more URLs contributing more to the overall averages.
Priority: None
Impact: Neutral
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}
) {
crawlOrigins(after: $after, reportType: Basic) {
nodes {
origin
urlsCount
cruxCls
cruxFcp
cruxItnp
cruxLcp
cruxTtfb
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"crux_domain_summary"}
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} ) { crawlOrigins(after: $after, reportType: Basic) { nodes { origin urlsCount cruxCls cruxFcp cruxItnp cruxLcp cruxTtfb } totalCount pageInfo { endCursor hasNextPage } } } }","variables":{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"crux_domain_summary"}}' https://api.lumar.io/graphql