Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Analytics / Google / Chrome UX Report API
Chrome UX Report API logo

Google Chrome UX Report API

Browse all Google APIs
✓ Official Vendor SpecAnalyticsWeb AnalyticsapiKey2 EndpointsREST

For Agents

Query Chrome real-user performance data and Core Web Vitals (LCP, INP, CLS) for any public origin or URL with no instrumentation required.

Use for: Get the latest Core Web Vitals for example.com, Retrieve LCP and INP for a specific page URL, Compare phone vs desktop performance for our origin, Pull a six-month history of Core Web Vitals for our site

Not supported: Does not run synthetic audits, instrument first-party analytics, or collect non-Chrome data — use for querying aggregated Chrome real-user Core Web Vitals only.

The Chrome UX Report (CrUX) API exposes aggregated, anonymised real-user performance data collected from Chrome users for any sufficiently popular public origin or page URL. It returns Core Web Vitals — Largest Contentful Paint, Interaction to Next Paint, Cumulative Layout Shift — plus First Contentful Paint, Time to First Byte, and form-factor splits. Performance teams use it to track field metrics for sites they own and benchmark competitors' real-user performance.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Chrome UX Report API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Chrome UX Report API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Chrome UX Report API.

Query the latest 28-day Core Web Vitals for any public origin

Query historical six-month time series of Core Web Vitals at the URL or origin level

Filter results by form factor — phone, tablet, desktop

Retrieve metric distributions across good, needs improvement, and poor buckets

Benchmark a competitor origin against your own real-user performance

Use Cases

Patterns agents use Chrome UX Report API for, with concrete tasks.

★ Core Web Vitals Dashboard

Performance engineers ingest CrUX queryRecord results into a dashboard that shows LCP, INP, and CLS distributions for owned origins, broken down by form factor. The data is real-user field data — no synthetic or RUM instrumentation required — which makes it the canonical source for Google's Search ranking signal. Most teams refresh weekly because the dataset is calendar-aligned.

POST /v1/records:queryRecord with origin=https://example.com and metrics=["largest_contentful_paint","interaction_to_next_paint","cumulative_layout_shift"] and return p75 values.

Historical Trend Analysis

Engineering managers track week-by-week regression and improvement of Core Web Vitals using queryHistoryRecord, which returns a six-month rolling time series. This shows whether shipped optimisations actually moved field metrics rather than only synthetic ones. The same call also surfaces form-factor splits so teams can isolate mobile-only regressions.

POST /v1/records:queryHistoryRecord with url=https://example.com/checkout and metric=largest_contentful_paint and return the six monthly p75 values.

Competitor Benchmarking

Product teams query CrUX for competitor origins to benchmark their real-user performance. Because CrUX is public for any origin meeting the eligibility threshold, no special access is required. This is widely used in retail and media verticals to scope optimisation roadmaps against the market.

POST /v1/records:queryRecord for origin https://competitor.com formFactor=PHONE and return whether all three Core Web Vitals pass.

AI Agent Performance Reporter via Jentic

An AI agent through Jentic runs an on-demand performance check — fetching the latest CrUX data for a list of owned origins, summarising which fail Core Web Vitals thresholds, and recommending where to invest. Jentic isolates the API key so the agent never sees the raw key value.

Through Jentic, search chromeuxreport_query_record, load schema, and execute it for origin https://example.com formFactor=PHONE and return p75 LCP.

Key Endpoints

2 endpoints — the chrome ux report (crux) api exposes aggregated, anonymised real-user performance data collected from chrome users for any sufficiently popular public origin or page url.

METHOD

PATH

DESCRIPTION

POST

/v1/records:queryRecord

Query the latest 28-day CrUX record for an origin or URL

POST

/v1/records:queryHistoryRecord

Query rolling six-month CrUX history for an origin or URL

POST

/v1/records:queryRecord

Query the latest 28-day CrUX record for an origin or URL

POST

/v1/records:queryHistoryRecord

Query rolling six-month CrUX history for an origin or URL

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Google Cloud API keys are stored encrypted in the Jentic vault (MAXsystem). Agents call CrUX with scoped access — the raw API key string never enters the agent's context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (e.g. 'get core web vitals for origin') and Jentic returns the records.queryRecord operation with its parameter schema, including form factor enums.

Time to first call

Time to first call

Direct integration: 0.5-1 day for project setup, API key creation, and request signing. Through Jentic: under 30 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

PageSpeed Insights API

→

Combines lab Lighthouse audits with CrUX field data for a single URL.

Use PageSpeed Insights when you also want lab diagnostics; use CrUX directly when you only need field metrics.

Complementary

Google Search Console API

→

Reports search performance and indexing status for owned properties.

Use Search Console for search clicks and indexing; use CrUX for real-user performance metrics.

Alternative

Google Analytics Data API

→

Reports first-party site analytics rather than aggregated Chrome field data.

Choose Analytics Data for first-party event metrics; choose CrUX for browser-collected Core Web Vitals at the origin or URL level.

FAQs

Specific to using Chrome UX Report API through Jentic.

What authentication does the Chrome UX Report API use?

It uses a Google Cloud API key passed as the key query parameter. No OAuth is required since CrUX data is aggregated and public. Through Jentic, the API key is stored encrypted in the Jentic vault and the agent calls CrUX without ever holding the raw key string.

Can I query Core Web Vitals for any URL?

Only for URLs and origins that meet the CrUX eligibility threshold — enough Chrome real-user samples in the 28-day window. POST /v1/records:queryRecord with either the origin or url field; if the URL has insufficient data the API returns 404 and you should fall back to the origin-level query.

What are the rate limits for the Chrome UX Report API?

Google enforces a default of 150 queries per minute per project on CrUX. Higher quota can be requested via the Google Cloud console. The dataset itself updates daily, so caching responses for several hours is the standard pattern.

How do I pull six months of LCP history through Jentic?

Use the Jentic search query "chrome ux report history record" to discover the records.queryHistoryRecord operation, load its schema, and execute it with the origin or url and metric=largest_contentful_paint. Run pip install jentic to get started.

Does CrUX cover non-Chrome browsers?

No. The dataset is collected only from opted-in Chrome users on devices that meet the criteria. Use a separate RUM provider if you need data from Safari, Firefox, or Edge users.

Is the Chrome UX Report API free?

Yes, the API is free within the default project quota. The underlying CrUX dataset is also published as a free public BigQuery dataset for callers who need bulk historical analysis.

GET STARTED

Start building with Chrome UX Report API

Explore with Jentic
View OpenAPI Document