www.revolut.com

Report from 8/6/2026, 10:41:04 AM https://www.revolut.com
Latest run · lab, cold cache
0
8/6/2026
28-day score · p75 · the standard
0
8 runs
CRR0%latest
SSD88%latest
TC1292 toklatest
TTFUT32 ms28-day p75

Scored by v3 · source-of-truth hashes: score db860d6ac94e · thresholds e94f8b33e500 — verifiable against the canonical scorer.

The 28-day score is the p75 of nightly runs — the stable number to cite. Deterministic metrics (CRR/SSD/TC) show their latest value (they move only when the site changes); timing (TTFUT) and answer-fidelity (AF) are smoothed by 28-day p75 — the same lab-vs-field split Core Web Vitals uses. Synthetic daily measurement, not real-user field data.

Core Agent Vitals badge  Embed this badge

Show your agent-readiness score anywhere — it links back to this report.

[![Core Agent Vitals](https://agentvitals.dev/badge/revolut.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.revolut.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.revolut.com"><img src="https://agentvitals.dev/badge/revolut.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameJust a quick security check | Revolut · guessed from page text (no structured data)
Categorynot found
Pricenot applicable · not applicable to this page type
Locationnot applicable · not applicable to this page type
Hoursnot applicable · not applicable to this page type
Productsnot applicable · not applicable to this page type
Descriptionnot found

An agent is likely to fabricate missing details rather than say “I don’t know”. 0/3 applicable facts come from machine-readable structured data.

An agent recovered no usable content from this page without executing JavaScript.
0
Overall score
weighted CAV (0–100)
FAIL
0–4950–8990–100

Metrics

0%
CRR Content Recovery Poor
0.88
SSD Semantic Signal Density Good
1,292 tok
TC Token Cost Good
27 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

Where the page's tokens go (≈7,015 across regions). 43% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.

Content
57.4% · 4,029
Chrome (nav / header / footer)
42% · 2,949
Boilerplate (cookie / ad)
0% · 0
Other
0.5% · 37

Final screenshot

Final screenshot of https://www.revolut.com

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence100% of content requires JS
ImpactA non-rendering agent never sees the JS-injected content.
Effort1–4 h

Fix: Server-render or statically generate the main content so a non-JS agent still receives it; make client rendering a progressive enhancement, not the source of truth.

medium TC 42.6% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 57.4%, chrome 42%, boilerplate 0%, other 0.5%. Only 57.4% of the agent's tokens are real content.
ImpactAn agent pays for boilerplate on every request and has less context left for the real content.
Effort30–90 min

Fix: Strip repeated nav/header/footer/cookie chrome from the agent-visible output; wrap content in <main>/<article> so the extractor keeps signal and drops boilerplate.

Rendered profile: headless

Agent Discoverability 52/100 · Needs Work

Access & discovery checks — separate from the gated CAV metrics above. Click an issue for business impact, what we measured, and how to fix. · Take the Agent Readiness course →

Agent files & endpoints

llms.txt Absent at /llms.txt and /.well-known/llms.txt Learn →
robots.txt (AI bots) Major AI bots allowed Learn →
sitemap.xml No /sitemap.xml Learn →
JSON-LD structured data No JSON-LD found Learn →
~ agents.json Absent (emerging standard) Learn →
~ WebMCP endpoint Absent (emerging standard) Learn →
~ OpenAPI / API docs No OpenAPI/Swagger found Learn →

Issues (7)

llms.txt present high impact Absent at /llms.txt and /.well-known/llms.txt

Business impact llms.txt is the robots.txt for AI: it tells agents what your site is, what matters, and where to find it. Without it AI guesses — and guessing means inaccurate recommendations and lost visibility.

What we measured We fetch /llms.txt and /.well-known/llms.txt and validate the spec (H1 title + a one-line blockquote summary). We also note /llms-full.txt (your full content as Markdown).

How to fix Create /llms.txt with a short summary + key pages; optionally /llms-full.txt with full content in Markdown.

Learn how to implement →

# Your Site
> One-line description for AI agents.

## Key pages
- /products — catalog
- /pricing — plans
- /docs — documentation

Spec: https://llmstxt.org

No login wall on public content high impact HTTP 403

Business impact Public content behind authentication is unreachable to agents (they have no account). Gate only genuinely private material.

What we measured We follow redirects and detect 401/403 and login-form signals on content pages.

How to fix Separate public marketing/docs from authenticated areas; keep public pages reachable without login.

Spec: https://llmstxt.org

Structured data (JSON-LD) medium impact No JSON-LD found

Business impact Schema.org JSON-LD tells agents what a page IS (product, article, business) with typed fields (price, rating, hours). Without it agents extract less reliably.

What we measured We parse <script type=application/ld+json>, validate it, and check for populated @type fields.

How to fix Add JSON-LD: Organization/LocalBusiness on the homepage, Product on product pages, Article on posts.

Learn how to implement →

<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Your Co","url":"https://example.com"}</script>

Spec: https://schema.org/

XML sitemap present medium impact No /sitemap.xml

Business impact A sitemap is your table of contents for AI crawlers. Without it agents follow homepage links and miss deep pages (products, docs, pricing) — shrinking what they can recommend.

What we measured We fetch /sitemap.xml (and /sitemap_index.xml), confirm valid XML with <loc> entries, and check <lastmod> freshness.

How to fix Generate an XML sitemap of all public pages with current lastmod dates and reference it in robots.txt.

Learn how to implement →

# robots.txt
Sitemap: https://example.com/sitemap.xml

Spec: https://www.sitemaps.org/

~ agents.json discovery low impact Absent (emerging standard)

Business impact agents.json describes what your site can DO for agents (services, endpoints, capabilities) — an emerging discovery standard. Early adopters get native agent integration.

What we measured We check /agents.json and /.well-known/agents.json for a valid configuration.

How to fix Publish /agents.json describing your site's capabilities and actions.

Learn how to implement →

Spec: https://github.com/wild-card-ai/agents-json

~ WebMCP endpoint low impact Absent (emerging standard)

Business impact WebMCP lets agents call actions on your site directly (book, buy, query) instead of scraping the DOM. Early adopters get native AI-agent interoperability.

What we measured We check /.well-known/webmcp and /webmcp.json for a valid actions array.

How to fix Add a WebMCP endpoint exposing your key actions to agents.

Learn how to implement →

Spec: https://webmcp.org

~ API documentation low impact No OpenAPI/Swagger found

Business impact Programmatic agents prefer a typed API. An OpenAPI/Swagger spec lets them integrate without scraping.

What we measured We probe /openapi.json, /swagger.json, /api-docs and /.well-known/openapi.json.

How to fix Publish an OpenAPI spec at a well-known path.

Learn how to implement →

Spec: https://www.openapis.org/

Passed audits (4)

✓ robots.txt allows AI bots✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ Server response (TTFB)

Transport & Trust (SEC 1.0.0)

HTTPS, HSTS, CSP, sniffing, referrer and CORS posture. Diagnostic only — this does not affect the CAV score. A security header does not make a page more legible to an agent, so scoring it would reward a CDN toggle that changes nothing an agent can recover. We measure it and say so.

62Transport posture (0–100, unscored)
3pass
1warn
1fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
⚠️ HSTSmax-age=2592000 is below the 180-day baseline
❌ Content-Security-Policyno content-security-policy header
✅ X-Content-Type-Optionsnosniff
✅ Referrer-Policysame-origin
➖ CORS exposureno CORS headers on the document (normal for an HTML page)
Full profile — how to improve · unused JS · network · timing

How to improve

highSplit the heaviest unused bundlehighest leverage

_app-06122e4b898aa6e3.js — 287 KiB transferred, 37.9% unused

EvidenceCDP JS coverage: 109 KiB of this bundle is never executed on load.
Impact~-109 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of _app-06122e4b898aa6e3.js, or drop unused dependencies.
highBreak up long main-thread tasks

longest task 394 ms (10 total)

EvidenceMain thread blocked 394 ms by the longest task.
ImpactFaster interactivity + content settling.
Effort1–4 h
FixSplit heavy work, defer third-party scripts, move compute off the main thread.
mediumCut total transfer weight

13.8 MB total

Evidence13.8 MB transferred.
ImpactCheaper, faster fetch on slow links.
Effort1–3 h
FixEnable Brotli, serve WebP/AVIF images, defer non-critical resources.

Third-party impact

2 third-party requests · 0 KiB (0% of transfer) — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.

Third-party domainReqsTransferMain-thread
googletagmanager.com10 KiB
googlesyndication.com10 KiB

Wasted JavaScript (by bundle)

Transfer-accurate — each bundle's transfer size × its unused %, ranked by wasted bytes (the biggest code-splitting wins). Unused JS also inflates Token Cost (TC).

BundleTransferUnusedWasted
https://www.revolut.com/_next/static/chunks/pages/_app-06122e4b898aa6e3.js287 KiB37.9%109 KiB
https://growth-performance.revolut.com/gtag/js?id=G-3Q2GNB8G11201 KiB49.4%99 KiB
https://growth-performance.revolut.com/gtag/js?id=G-NC0XSL7JGN210 KiB44.1%93 KiB
https://www.revolut.com/_next/static/chunks/framework-f5eb07d287f779a4.js52 KiB49.8%26 KiB
https://www.revolut.com/_next/static/chunks/main-dd1206cc42b06a96.js46 KiB52.4%24 KiB
https://www.revolut.com/_next/static/chunks/4162.28e7bce1a658b5d8.js13 KiB83.4%11 KiB
https://www.revolut.com/_next/static/chunks/832.5a3c9ba1efcfe4da.js13 KiB80.9%11 KiB
https://www.revolut.com/_next/static/chunks/7520.b1224333812a836b.js14 KiB73.3%10 KiB
https://www.revolut.com/_next/static/chunks/4476.ec7d56649b06c4f9.js8 KiB91.7%8 KiB
https://www.revolut.com/_next/static/chunks/4330.145dae75867d0f9f.js7 KiB89.5%7 KiB
https://www.revolut.com/_next/static/chunks/7847.649b05f7d9cb5cf0.js8 KiB83.3%6 KiB
https://www.revolut.com/_next/static/chunks/6951.3dda094377e0d885.js15 KiB42.5%6 KiB
https://www.revolut.com/_next/static/chunks/1891-6cc871406f1a5912.js9 KiB55.8%5 KiB
https://www.revolut.com/_next/static/chunks/8086.c5adfd64844c03d9.js6 KiB81.6%5 KiB
https://www.revolut.com/_next/static/chunks/1646.820d6b53b87bfd87.js7 KiB63.2%4 KiB

Network

133Requests
14120 KiBTransferred
54Scripts
0%3rd-party
10Long tasks
Image (27)
12039 KiB
Script (54)
1135 KiB
Font (8)
837 KiB
Document (1)
59 KiB
Media (12)
25 KiB
Stylesheet (23)
23 KiB
Other (1)
1 KiB
Fetch (7)
1 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://assets.revolut.com/published-assets-v3/38a40981-07a2-49fe-93c7-7de5f6070228/c70e3d88-4ce6-4739-8a29-898efe9404ba.pngImage2002665 KiB
https://assets.revolut.com/published-assets-v3/4bcf4f81-c0b1-4bde-82f5-0b4cd2ddd2ef/f94bbcee-b4a0-49f2-8043-c472b47d0ac7.pngImage2002220 KiB
https://assets.revolut.com/published-assets-v3/0b709a3f-3f22-48ba-9af7-70552fb3cb10/4d3ae3d1-b443-4483-beb7-20071261f5ab.pngImage2002163 KiB
https://assets.revolut.com/published-assets-v3/ecad5fbe-66ca-48bb-8694-ffe6f33d3ef9/652bf5bf-c982-4989-809d-c47cdd51204b.pngImage2001268 KiB
https://assets.revolut.com/published-assets-v3/d6d0bfe6-bc41-44db-8dde-dd3665b3c359/e306c6b0-8d4e-4b03-ae84-c2e6c4da0904.pngImage200932 KiB
https://assets.revolut.com/published-assets-v3/c1d9d317-7303-4f79-8756-937632237bb5/0eb1515a-91e8-4d4e-8e19-ff7c82de5410.pngImage200701 KiB
https://assets.revolut.com/published-assets-v3/af2fd3c8-cfef-40f0-a673-4a2c9fa85d69/e0cd59b6-e3e1-4084-b269-a736c0ce8f78.pngImage200638 KiB
https://assets.revolut.com/published-assets-v3/94150ea7-4f5d-4931-9947-ab0518bea769/07844b11-869f-4b91-a5e5-ae2605f6c1c8.pngImage200453 KiB
https://assets.revolut.com/assets/fonts/Inter-4.2/InterVariable.woff2Font200346 KiB
https://www.revolut.com/_next/static/chunks/pages/_app-06122e4b898aa6e3.jsScript200287 KiB
https://assets.revolut.com/published-assets-v3/01f199ee-b3f2-4203-9ab7-27d133045284/a1b80bd3-607e-450e-80a0-83317969cf66.pngImage200251 KiB
https://growth-performance.revolut.com/gtag/js?id=G-NC0XSL7JGNScript200210 KiB
https://growth-performance.revolut.com/gtag/js?id=G-3Q2GNB8G11Script200201 KiB
https://assets.revolut.com/published-assets-v3/e33846f9-ef6b-4234-8bba-fb264119f37f/19f9e890-4d8d-4705-9cbe-2cd2d7f05d30.pngImage200121 KiB
https://assets.revolut.com/published-assets-v3/4ddae90c-6272-457d-a3e6-202835b6e225/1689bda2-0c64-40a6-8c02-80e1eb6c86c2.pngImage200121 KiB
https://assets.revolut.com/published-assets-v3/dbda1cf2-0f02-4e27-b0ce-1ea086d048b2/7ae94cdd-99be-468c-9a99-76179014bf79.pngImage200120 KiB
https://assets.revolut.com/assets/fonts/Inter-SemiBold.woff2Font200110 KiB
https://assets.revolut.com/assets/fonts/Inter-Medium.woff2Font200109 KiB
https://assets.revolut.com/assets/fonts/Inter-Regular.woff2Font200101 KiB
https://assets.revolut.com/published-assets-v3/f9f2192a-0076-4545-8e1e-83d852ea5130/264c79dd-e283-4f7d-9e60-a11079c7fc02.pngImage20086 KiB
https://assets.revolut.com/published-assets-v3/dfa154ba-a21c-4dc1-b9a3-4ce83ccdb1ca/3829d1d5-8883-4351-a6a8-a960d419f04e.pngImage20085 KiB
https://assets.revolut.com/published-assets-v3/2ad33298-6664-45ae-b325-8c3782fc0b5c/1bc89c99-4c81-4639-970a-51a8a20a5f5c.pngImage20071 KiB
https://assets.revolut.com/published-assets-v3/c5c49070-312c-4567-8359-6ffc1624cafa/931fbf11-937a-45d4-9c9d-7078412a8ba9.pngImage20061 KiB
https://www.revolut.com/Document20059 KiB
https://assets.revolut.com/published-assets-v3/2309e107-7172-4cfc-a965-dc0d7acd4b72/dce27cc2-39ac-4f46-b887-46b8e1f5e976.pngImage20058 KiB
https://assets.revolut.com/assets/fonts/AeonikPro-Black.woff2Font20054 KiB
https://assets.revolut.com/assets/fonts/AeonikPro-Regular.woff2Font20053 KiB
https://www.revolut.com/_next/static/chunks/framework-f5eb07d287f779a4.jsScript20052 KiB
https://www.revolut.com/_next/static/chunks/2525.92bca98feda7d6e9.jsScript20052 KiB
https://www.revolut.com/_next/static/chunks/main-dd1206cc42b06a96.jsScript20046 KiB

Long tasks (>50 ms)

StartDuration
1988 ms394 ms
2504 ms288 ms
2886 ms233 ms
3455 ms74 ms
1208 ms73 ms
3535 ms65 ms
1514 ms62 ms
1873 ms62 ms
2429 ms61 ms
1815 ms55 ms
Analyzing…
running mobile + desktop · ~30s