www.coinbase.com

Report from 7/24/2026, 12:06:00 PM https://www.coinbase.com/
Latest run · lab, cold cache
0
7/24/2026
28-day score · p75 · the standard
0
21 runs
CRR0%latest
SSD26%latest
TC852 toklatest
TTFUT8 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/coinbase.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.coinbase.com%2F)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.coinbase.com%2F"><img src="https://agentvitals.dev/badge/coinbase.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameCoinbase Canada - Buy & Sell Bitcoin, Ethereum, and more, Securely · guessed from page text (no structured data)
CategoryOrganization
Pricenot found
Locationnot found
Hoursnot found
Productsnot found
🟡DescriptionCoinbase Canada is a secure online platform for buying, selling, transferring, and storing cryptocurrency. · guessed from page text (no structured data)

An agent is likely to fabricate missing details rather than say “I don’t know”. 1/7 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.26
SSD Semantic Signal Density Poor
852 tok
TC Token Cost Good
7 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

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

Content
28.6% · 1,808
Chrome (nav / header / footer)
60.2% · 3,807
Boilerplate (cookie / ad)
11.3% · 713
Other
0% · 0

Final screenshot

Final screenshot of https://www.coinbase.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.

high SSD Low signal-to-noise for agents

content vs chrome/boilerplate

Evidencesignal 0.36 +llms.txt bonus · generic JSON-LD 0/1 · missing: name
ImpactAgent spends tokens parsing nav/boilerplate instead of content.
Effort30–90 min

Fix: Wrap the real content in <main>/<article>, cut repeated nav/boilerplate, and keep the primary content dense and early in the DOM.

high TC 71.4% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 28.6%, chrome 60.2%, boilerplate 11.3%, other 0%. Only 28.599999999999994% 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 66/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 Found at /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 (6)

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 (5)

✓ robots.txt allows AI bots✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ llms.txt present + valid✓ 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.

100Transport posture (0–100, unscored)
5pass
0warn
0fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=31536000; includeSubDomains; preload
✅ Content-Security-Policypolicy present, script-src does not allow inline
✅ 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

e_CR6ut2vd.js — 745 KiB transferred, 47.4% unused

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

longest task 802 ms (10 total)

EvidenceMain thread blocked 802 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 third-party weight

ctfassets.net — 796 KiB, 5 requests

EvidenceThird-party is 38.4% of total transfer (26 requests); ctfassets.net is the largest.
ImpactFewer bytes + main-thread stalls before your content settles for an agent.
Effort1–3 h
FixLazy-load, self-host, or remove ctfassets.net; defer non-critical third-party scripts.
mediumLower server response time

time to first byte

EvidenceTTFB is 755 ms.
ImpactEarlier first useful token (TTFUT).
Effort1–3 h
FixCache at the edge (CDN), reduce server work, avoid redirect chains.
mediumCut total transfer weight

2.8 MB total

Evidence2.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

26 third-party requests · 1112 KiB (38.4% of transfer) · 98 ms main-thread — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.

Third-party domainReqsTransferMain-thread
ctfassets.net5796 KiB
cookielaw.org11213 KiB98 ms
google.com297 KiB
sprig.com64 KiB
onetrust.com10 KiB
youtube.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.coinbase.com/assets/sw-cache/e_CR6ut2vd.js745 KiB47.4%353 KiB
https://cdn.cookielaw.org/scripttemplates/202602.1.0/otBannerSdk.js 3P129 KiB62.6%81 KiB
https://accounts.google.com/gsi/client 3P97 KiB80.4%78 KiB
https://www.coinbase.com/assets/sw-cache/c_Bxpm-ME-.js90 KiB84%75 KiB
https://www.coinbase.com/assets/sw-cache/c_Da75CULC.js26 KiB86.3%23 KiB
https://www.coinbase.com/assets/sw-cache/c_1n0hBKB7.js10 KiB95.4%9 KiB
https://www.coinbase.com/assets/sw-cache/c_Ctaybk2W.js9 KiB85.7%7 KiB
https://www.coinbase.com/assets/sw-cache/c_DLcLT6Qd.js8 KiB92.5%7 KiB
https://cdn.cookielaw.org/consent/01956191-791b-769a-8313-3683f5e22e0d/otSDKStub.js 3P13 KiB52.6%7 KiB
https://www.coinbase.com/assets/sw-cache/c_82y9V-9Y.js6 KiB81.1%5 KiB
https://www.coinbase.com/assets/sw-cache/c_Bv0i_PcW.js8 KiB59.9%5 KiB
https://www.coinbase.com/assets/sw-cache/c_Bl88NCBq2.js11 KiB35.9%4 KiB
https://www.coinbase.com/assets/sw-cache/c_Dv1RnYpE.js4 KiB74.2%3 KiB
https://www.coinbase.com/assets/sw-cache/c_BLZpPgW_2.js4 KiB70.3%3 KiB
https://www.coinbase.com/assets/sw-cache/c_C3RyeKVo.js3 KiB86.1%3 KiB

Network

144Requests
2898 KiBTransferred
78Scripts
38.4%3rd-party
10Long tasks
Script (78)
1258 KiB
Image (17)
998 KiB
Font (6)
466 KiB
Fetch (17)
82 KiB
Document (2)
56 KiB
Stylesheet (10)
29 KiB
XHR (5)
5 KiB
Other (5)
4 KiB
Manifest (1)
1 KiB
Ping (3)
0 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://www.coinbase.com/assets/sw-cache/e_CR6ut2vd.jsScript200745 KiB
https://images.ctfassets.net/o10es7wu5gm1/5FRx7D75B5NeGKmnCjBTzc/93f654ac9bfa3abc0c2b28932b4d1e1c/LOLP_EN.png?fm=avif&w=2160&h=2250&q=65Image200401 KiB
https://www.coinbase.com/assets/sw-cache/a_BPl0S-Y5.woff2Font200264 KiB
https://images.ctfassets.net/o10es7wu5gm1/6zEPuFRRebtQhSq16t3ANT/b4120f6788b18555f23c541cfffa3dec/image__13_.pngImage200208 KiB
https://images.ctfassets.net/o10es7wu5gm1/d7A7x1TYo6WoXucBnBx7R/6220e38396bc3f903ec8010feeb0297a/EN.png?fm=avif&w=2034&h=2016&q=65Image200154 KiB
https://static-assets.coinbase.com/growth/acquisition/global-nav/upsell/company_upsell.pngImage200135 KiB
https://cdn.cookielaw.org/scripttemplates/202602.1.0/otBannerSdk.jsScript200129 KiB
https://accounts.google.com/gsi/clientScript20097 KiB
https://www.coinbase.com/assets/sw-cache/c_Bxpm-ME-.jsScript20090 KiB
https://www.coinbase.com/en-caDocument20056 KiB
https://cdn.cookielaw.org/consent/01956191-791b-769a-8313-3683f5e22e0d/019a2a2f-94c5-7bea-841e-38c492f40508/en.jsonFetch20043 KiB
https://www.coinbase.com/assets/sw-cache/a_B-911Gqf.woff2Font20041 KiB
https://www.coinbase.com/assets/sw-cache/a_BybxolpF.woff2Font20041 KiB
https://www.coinbase.com/assets/sw-cache/a_BDyAm2xz.woff2Font20041 KiB
https://www.coinbase.com/assets/sw-cache/a_CH-aRrrD.woff2Font20040 KiB
https://www.coinbase.com/assets/sw-cache/a_BJ1-X6Dz.woff2Font20039 KiB
https://static-assets.coinbase.com/growth/acquisition/global-nav/upsell/institutions_upsell.pngImage20030 KiB
https://images.ctfassets.net/o10es7wu5gm1/4clhoHumOzwRIuMvRKNMAL/d8e84a1212141a112cc324aa4a1e0079/Frame_1984077839.svgImage20028 KiB
https://www.coinbase.com/assets/sw-cache/c_Da75CULC.jsScript20026 KiB
https://www.coinbase.com/assets/sw-cache/a_m3m7GXAn.cssStylesheet20023 KiB
https://static-assets.coinbase.com/growth/acquisition/global-nav/upsell/individuals_fallback_upsell.jpgImage20014 KiB
https://cdn.cookielaw.org/scripttemplates/202602.1.0/assets/v2/otPcCenter.jsonFetch20013 KiB
https://cdn.cookielaw.org/consent/01956191-791b-769a-8313-3683f5e22e0d/otSDKStub.jsScript20013 KiB
https://static-assets.coinbase.com/growth/acquisition/global-nav/upsell/developers_upsell_cdxv2_2.jpgImage20012 KiB
https://www.coinbase.com/assets/sw-cache/c_Bl88NCBq2.jsScript20011 KiB
https://www.coinbase.com/assets/sw-cache/c_1n0hBKB7.jsScript20010 KiB
https://www.coinbase.com/assets/sw-cache/c_Ctaybk2W.jsScript2009 KiB
https://www.coinbase.com/assets/sw-cache/c_Bv0i_PcW.jsScript2008 KiB
https://www.coinbase.com/assets/sw-cache/c_DLcLT6Qd.jsScript2008 KiB
https://www.coinbase.com/assets/sw-cache/c_82y9V-9Y.jsScript2006 KiB

Long tasks (>50 ms)

StartDuration
1587 ms802 ms
4088 ms489 ms
4918 ms269 ms
3690 ms245 ms
1180 ms210 ms
875 ms122 ms
1479 ms107 ms
4677 ms69 ms
1415 ms63 ms
3577 ms62 ms
Analyzing…
running mobile + desktop · ~30s