www.quizlet.com

Report from 7/18/2026, 1:24:54 PM https://www.quizlet.com
Latest run · lab, cold cache
27
7/18/2026
28-day score · p75 · the standard
31
9 runs
CRR9%latest
SSD42%latest
TC161 toklatest
TTFUT16 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/quizlet.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.quizlet.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.quizlet.com"><img src="https://agentvitals.dev/badge/quizlet.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
🟡Business nameCaptcha Challenge… · 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.

We recovered only a shell of this page (under 200 tokens) — likely a soft bot-block or a client-rendered app that served our scanner almost no content. The metrics below reflect that shell, not your real site; the score is capped until an agent can retrieve real content.
27
Overall score
weighted CAV (0–100)
FAIL
0–4950–8990–100

Metrics

9%
CRR Content Recovery Poor
0.41
SSD Semantic Signal Density Needs work
161 tok
TC Token Cost Good
17 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

Where the page's tokens go (≈2,201 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
27.9% · 615
Chrome (nav / header / footer)
55.9% · 1,230
Boilerplate (cookie / ad)
5.1% · 112
Other
11.1% · 244

Final screenshot

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

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence91% of content requires JS · 9% of rendered content recovered (rest is placeholder/wrong)
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 TC 72.1% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 27.9%, chrome 55.9%, boilerplate 5.1%, other 11.1%. Only 27.900000000000006% 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.

medium SSD Low signal-to-noise for agents

content vs chrome/boilerplate

Evidencesignal 0.28 · website JSON-LD 1/2 · 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.

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) No robots.txt → nothing blocked 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.

56Transport posture (0–100, unscored)
3pass
0warn
2fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
❌ HSTSno strict-transport-security header
❌ 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

highProfile reflects a block/challenge page — not your contenthighest leverage

whole profile

EvidenceMeasured against a block/challenge page (the main document returned HTTP 403); every number here describes the wall, not your site.
ImpactAn AI agent hits the same wall and recovers none of your content — fix the block before optimizing anything else.
FixAllowlist legitimate agent user-agents / IP ranges in your WAF or bot-management and serve real content (not a challenge), then re-run.

Third-party impact

12 third-party requests · 149 KiB (28.9% of transfer) · 100 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
px-cloud.net6103 KiB100 ms
gstatic.com242 KiB
googleapis.com23 KiB
px-client.net11 KiB
crcldu.com10 KiB

JavaScript coverage

216 KiB unused of 795 KiB (27% unused JS) — unused JS inflates Token Cost (TC) and slows the agent's parse.

Per-script coverage (5)
ScriptSizeUnused
https://quizlet.com/VlUfj7uV/captcha/captcha.js?a=c&u=18017af6-82ac-11f1-8e47-e8a67876c46f&v=&m=0537 KiB120 KiB (22%)
https://client.px-cloud.net/PXVlUfj7uV/main.min.js231 KiB87 KiB (38%)
https://quizlet.com/cdn-cgi/challenge-platform/scripts/jsd/main.js21 KiB6 KiB (28%)
https://quizlet.com/4 KiB4 KiB (85%)
https://quizlet.com/1 KiB0 KiB (22%)

Network

35Requests
515 KiBTransferred
20Scripts
28.9%3rd-party
2Long tasks
Script (20)
345 KiB
Other (1)
115 KiB
Font (2)
42 KiB
XHR (7)
7 KiB
Stylesheet (2)
3 KiB
Document (3)
2 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://quizlet.com/VlUfj7uV/captcha/captcha.js?a=c&u=18017af6-82ac-11f1-8e47-e8a67876c46f&v=&m=0Script200238 KiB
https://quizlet.com/favicon.icoOther403115 KiB
https://client.px-cloud.net/PXVlUfj7uV/main.min.jsScript20098 KiB
https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2Font20042 KiB
https://quizlet.com/cdn-cgi/challenge-platform/h/b/scripts/jsd/3104729c556c/main.js?Script20010 KiB
https://collector-pxvlufj7uv.px-cloud.net/assets/js/bundleXHR2003 KiB
https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swapStylesheet2003 KiB
https://quizlet.com/Document4032 KiB
https://collector-pxvlufj7uv.px-cloud.net/assets/js/bundleXHR2002 KiB
https://collector-pxvlufj7uv.px-client.net/b/g?payload=aUkQRhAIEH5Kc1F0ZV5IenFRDxAeEFYQCEkQflx0VlZ1VWtqWQoPEAhUU15BVx4Qa2N4YXBLYEBkWHsPEAgQYmoDAwUGBxAeEHtcA2BXdWNgZwJ7DxAIEEJKWlEQHhBXd0F+dlgCW3FIYw8QCFRTXkFXHhBkW15efnB8d2tgAg8QCBAKAwsLAVEHUAUFBAZUUQUAAlBUBldQBwJTB1cBBVQHUFYLAQQDBgACBAFQUFBXAgUHCgMAVFcGAAcKVwcDAQoLCHkLSllUXlNwc1pVWFsES3hgcF5mfFRQC35rYhkAax1CYnlfWn9la0pmY3lfdWtqR19fcUtbV3F0WUcBWmtdSmp3VHtHd1lAXGtdV2YBA19bRx1eeBljDw8IAwICAghKZkIFUX59f11+ZgYHf2UFfmoCVlFGC0hIdAEdYlBbAAV+e10HBUpoU1V1ZQMLe2ZXWUN3agN0QlFheUd1YkZUAkJzXmJKQn9fZ15zWHMAZH8LdAZ9fx0AHX93R3leQwIKRFEBW3QKS1RwXGV/C1ZKXV9+R2sDBGQGdYwNdBGZdXFZkBFtwBmB9RVd5Y3liQFd6dWF5dnZ4AQZRdFZ3UVVAYF^dbcGh4d3Bgf2IHXAZ5eUhDZF4BYQJ3UwR6YEBzdFReSnBBWiFVRfmtAXFNWR2cKBgZ%3EDYCnFfUXEGWnZKCwIDUHN5fVxgVFN8VlVZXUB+ZGB6Y2NxUHxDClFcQgd2AmBIZAtNLZh17ZEYLcUV+RFxHQGUFrBEp4QUhAZ0NDB0BhSmp9AmQA%3EGVnZ8QVUHAQBjBntzfkFgQwp3VVRif3lVWH1VX1NxZUBeZHFze3RbYFwDfhljYRlXBmpdSkdLRwdXcAtGVVdBahlFc0BCcEpLfHMLQU^OdEBntBBXcCVFZIW1x}dAgBbBVpkGVoKawFEUDpGZdRgdRZEVFRXZ/HQpFQ0NVC1dXBlhWU2gGZAdkd1pwUXloYQF9XQNCAlBFZ3xAR0BbfkJZClV2cUZ6c0QDHUBeSlMKAEJZfQFBakZaIdkACCgFrhd3lGSFtiRVdQYFQBAg8QHhBxakIEYgJFaldFDAg8QCEkQYKmoDAAUBChAIAAABHhBiagMABQELEAgCHhBiagMABQYCEAgCHhBiagMABQYDEAgfA08eEHBIWgJUZ3RnVnddDxAIEFpGRk7JBCB0dQ0d7bSF5XRhxRXV8dEE9Pbw==&appId=PXVlUfj7uV&tag=eyRIJj1OUld/LA==&uuid=18017af6-82ac-11f1-8e47-e8a67876c46f&ft=408&seq=1&en=NTA&bi=Em0hIkdVYANUNkcHCz4bARNLNWUDZ2gFHn8+bygpaygdTWcYViJnH3w5VVkTTCx7EVhtHDpqZEF7aCA4AQBzCw9/cQgDPxQPCE40elRya1EefjJZKChleBJDYh1LMC4=&cs=6be74412e1135f88f9f840b51b67475bf44e7328f8423b6fbd9f3fc63abedaba&pc=2326732595919080&sid=184eaaf0-82ac-11f1-952f-afe58f9311ab%F3%A0%84%B1%F3%A0%84%B7%F3%A0%84%B8%F3%A0%84%B4%F3%A0%84%B3%F3%A0%84%B8%F3%A0%84%B1%F3%A0%84%B1%F3%A0%84%B0%F3%A0%84%B7%F3%A0%84%B9%F3%A0%84%B1%F3%A0%84%B4&vid=18017cf3-82ac-11f1-8e47-7440b8a5b59a&ci=1850f2a0-82ac-11f1-82ec-7504b4b8fe28&pxhd=026c93a2a8deb0bb52e98c27d999d7cbcbbfa23a3eb15597bb0081d0be3883fd:18017cf3-82ac-11f1-8e47-7440b8a5b59a&cts=184eacf7-82ac-11f1-952f-afe58f9311ab&hid=vEqynotQzhDjpVxKrrLk3p-kRfWC8rBGJpTDO76/bEY=:FldDT6Gn6kJmJrwqnVTd4rY3FQcByvk2MB4IiueqU5EQGx6Od-W7cp9EHAKpZ7ZwB1GLKM7jU1L3LN2aaWjUPsW7-SASKKFvtry7RjgJytWfmj981JQ1SQ5/vx/WHr7DTXm-zbRckmpq7oxTXHwALx9wkHMZFIfoq2HzvEscbqLzfg/2hp2-mWQa00ezxG9DXHR2001 KiB
https://quizlet.com/cdn-cgi/challenge-platform/h/b/jsd/oneshot/3104729c556c/0.8849115374655921:1784379922:0exnxyK0OBqxFHmGMM6tEC27fKbhqaK9WTW8zE3mMv0/a1d1cf811e5b7dafXHR2001 KiB
https://ift.px-cloud.net/ns?c=18017af6-82ac-11f1-8e47-e8a67876c46fXHR2001 KiB
blob:https://quizlet.com/1f9e0465-46bd-4852-a3a3-2f980cd88284Script0 KiB
blob:https://quizlet.com/4c21fd76-dd91-4e68-b823-0ef5907128a0Script0 KiB
blob:https://quizlet.com/65bd06b6-d2b5-4b2d-b2de-5eea0bd25a77Script0 KiB
blob:https://quizlet.com/4452d37a-6a3d-405b-a22e-5f631c436667Script0 KiB
blob:https://quizlet.com/ea39fbc9-2f75-4f37-b006-74358477848dScript0 KiB
blob:https://quizlet.com/a57e05d1-7f33-4846-b88c-93b113a4783bScript0 KiB
blob:https://quizlet.com/0bf8837a-9ea9-49d4-9630-947a46732df3Script0 KiB
blob:https://quizlet.com/1d0a11d3-2be5-412c-b361-47cc0c533251Script0 KiB
blob:https://quizlet.com/d3e519ab-b718-4cfb-bb84-4d8815a98ca2Script0 KiB
blob:https://quizlet.com/ee09be23-593f-42dc-84f0-9ff5c99dc503Script0 KiB
blob:https://quizlet.com/d10fe5d6-ab7a-4893-bfe2-b1170beed970Script0 KiB
blob:https://quizlet.com/f20df536-ca87-4eb2-b67d-d1c63eb1fde2Script0 KiB
blob:https://quizlet.com/4e235b51-2cb2-4ebf-bd1f-f84a60f27abaScript0 KiB
blob:https://quizlet.com/d4d6f7d4-cc95-4e2b-9d0b-fcacff9ed783Script0 KiB
blob:https://quizlet.com/a1fe4c8b-c9c7-443e-9f54-44952dd1faddScript0 KiB
blob:https://quizlet.com/a2a3cc18-f27e-41ad-9b4c-9965896a5577Script0 KiB
blob:https://quizlet.com/f21f5a91-dbcf-462c-b62b-5dceb3956394Script0 KiB
https://js.px-cloud.net/?t=d-fj4wf2qj2-1784381107986&v=18017cf3-82ac-11f1-8e47-7440b8a5b59a&h=cXVpemxldC5jb20%3D&a=PXVlUfj7uVDocument2000 KiB

Long tasks (>50 ms)

StartDuration
354 ms77 ms
586 ms51 ms
Analyzing…
running mobile + desktop · ~30s