Skip to main content

anthropic.com — Website Report

Scored 61/100 · Scanned with Foglift

D
OverallOverall Score — weighted average of all category scores

anthropic.com scored 61. One fix would take it to 81.

3 critical10 warnings17 total issues

Quick wins

~143 min total fix time
1Missing X-Content-Type-Options header~2m
2Missing X-Frame-Options header~2m
3Missing Referrer Policy header~2m

https://anthropic.com/ · 2026-06-29

Scanned with Foglift · Technical Audit + AI Readiness analysis

AI Search Readiness Risk

Your AI Readiness score of 34/100 means AI assistants like ChatGPT and Perplexity may not recommend your site. Monitor your AI visibility →

AI Action Plan

Website Analysis for https://anthropic.com/ Your site scores 61/100, but AI search engines can barely find you. AI Visibility: 33/100. When customers ask ChatGPT or Perplexity about your industry, you're likely not in the answer. We found 3 critical issues and 10 warnings. Here's your prioritized action plan:

FIX FIRST (Critical): 1. AI engines can't understand your business — Your site has no structured data — the machine-readable labels that tell AI what your business does, what you offer, and why you're an authority. Without this, AI assistants are much less likely to mention or recommend you.

2. Slow server response — Server responded in 4.2s. Aim for under 200ms Time to First Byte (TTFB). Check your server configuration, database queries, and hosting performance. 3. 14 render-blocking scripts — 14 scripts without async or defer attributes. These block page rendering. Add defer or async to non-critical scripts. QUICK WINS (Warnings): 1. No FAQ section found — AI assistants love Q&A content — it's the easiest format for them to extract and quote. Add a Frequently Asked Questions sect

12 more critical fixes + quick wins in your full report

Enter your email and we'll send the complete action plan to your inbox.

No spam. Just your report.

Share This Report

Send this scan to a teammate or contact. The shareable link includes all scores and issues.

Email to Contact

AI Visibility

How likely AI assistants like ChatGPT, Perplexity, and Gemini are to cite your brand

33F
0
Brand Mentions
Unable to check brand mentions: Brave API 402: {"type":"ErrorResponse","error":{"id":"b17b16aa-8ba4-416b-8afe-1627a2da25fc","status":402,"detail":"Usage limit exceeded.","meta":{"plan":"Search","current_spend":5.0,"usage_limit":5.0,"usage_limit_ty
34
Domain Authority
PageRank: 4.6/10, 0+ external references
76
Content Freshness
93 of 478 pages updated in the last 30 days
50
Technical Readiness
Moderate technical readiness — some improvements possible

Technical Issues

AI engines can't understand your businesscritical~10 min fix

Your site has no structured data — the machine-readable labels that tell AI what your business does, what you offer, and why you're an authority. Without this, AI assistants are much less likely to mention or recommend you.

Quick Fix
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company Name",
  "url": "https://yoursite.com",
  "description": "Brief description of your business",
  "sameAs": [
    "https://twitter.com/yourhandle",
    "https://linkedin.com/company/yourcompany"
  ]
}
</script>
Add JSON-LD structured data so AI models understand your business entity and can cite you accurately.
No FAQ section foundwarning~15 min fix

AI assistants love Q&A content — it's the easiest format for them to extract and quote. Add a Frequently Asked Questions section to your page, and you'll significantly increase your chances of being cited in AI-generated answers.

Quick Fix
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "What does your company do?",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "We provide [your service]. Our solution helps..."
    }
  }]
}
</script>
AI models frequently cite FAQ content. Add FAQPage schema to boost your chances of appearing in AI-generated answers.
AI doesn't know who you areinfo~10 min fix

Your site is missing identity markup that tells AI engines "we are [Company X], and here's what we do." Adding this helps AI assistants recognize your brand as an authority and recommend you by name.

Quick Fix
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company",
  "url": "https://yoursite.com",
  "logo": "https://yoursite.com/logo.png",
  "sameAs": [
    "https://twitter.com/yourhandle",
    "https://linkedin.com/company/yourcompany",
    "https://github.com/yourorg"
  ],
  "contactPoint": {
    "@type": "ContactPoint",
    "email": "hello@yoursite.com",
    "contactType": "customer service"
  }
}
</script>
Entity markup tells AI models who you are, making them more likely to cite your brand accurately.

Pro tip: The biggest drivers of AI visibility are brand mentions and domain authority — not just technical setup. Set up AI visibility monitoring →

How does AI see Anthropic?

When users ask AI about your industry, are you recommended?

G
C
P
Ge
A

See how ChatGPT, Claude, Perplexity, and Gemini talk about Anthropic

SEO & Technical Issues (14)

Slow server responsecriticalPerformance

Server responded in 4.2s. Aim for under 200ms Time to First Byte (TTFB). Check your server configuration, database queries, and hosting performance.

14 render-blocking scriptscriticalPerformance

14 scripts without async or defer attributes. These block page rendering. Add defer or async to non-critical scripts.

Missing X-Content-Type-Options headerwarningSecurity~2 min fix

Set X-Content-Type-Options: nosniff to prevent MIME-type sniffing.

Quick Fix
# Nginx:
add_header X-Content-Type-Options "nosniff" always;

# Next.js (next.config.js headers):
{ key: 'X-Content-Type-Options', value: 'nosniff' }
Prevents browsers from MIME-type sniffing, which can lead to security vulnerabilities.
Missing X-Frame-Options headerwarningSecurity~2 min fix

Set X-Frame-Options to prevent clickjacking attacks.

Quick Fix
# Nginx:
add_header X-Frame-Options "SAMEORIGIN" always;

# Next.js (next.config.js headers):
{ key: 'X-Frame-Options', value: 'SAMEORIGIN' }
X-Frame-Options prevents clickjacking by controlling who can embed your page in an iframe.
Missing Referrer Policy headerwarningSecurity~2 min fix

Add a Referrer-Policy header to control information leakage.

Quick Fix
# Nginx:
add_header Referrer-Policy "strict-origin-when-cross-origin" always;

# Next.js (next.config.js headers):
{ key: 'Referrer-Policy', value: 'strict-origin-when-cross-origin' }
Controls how much referrer information is sent with requests, protecting user privacy.
Missing Permissions Policy headerwarningSecurity~2 min fix

Add a Permissions-Policy header to control browser feature access.

Quick Fix
# Nginx:
add_header Permissions-Policy "camera=(), microphone=(), geolocation=()" always;

# Next.js (next.config.js headers):
{ key: 'Permissions-Policy', value: 'camera=(), microphone=(), geolocation=()' }
Permissions-Policy restricts which browser features your site can use, reducing attack surface.
1 form input may lack labelswarningAccessibility

Form inputs should have associated labels or aria-label attributes so screen readers can identify them.

Skipped heading levelwarningAccessibility

Heading hierarchy jumps from H3 to H6. Don't skip heading levels — this confuses screen readers and assistive technology.

1 link with vague textwarningAccessibility

Links with text like "click here" or "read more" don't make sense out of context. Use descriptive link text that explains the destination.

Large HTML documentwarningPerformance

Your HTML is 210KB. Large HTML documents take longer to parse. Consider lazy loading content or splitting into multiple pages.

14 third-party scripts loadedwarningPerformance

Your page loads 14 scripts from external domains. Consider auditing trackers and widgets and deferring non-critical ones.

No structured data foundinfoSEO

Add JSON-LD structured data (Schema.org) to help search engines understand your content and earn rich snippets in search results.

Few internal linksinfoSEO

Add more internal links to help search engines discover and index your other pages. Internal linking also helps distribute page authority.

HTML contains many commentsinfoPerformance

Found 22 HTML comments. Remove unnecessary comments in production to reduce file size.

Your Potential Score

61

Now

78

Potential

+17 points possible by fixing 17 issues

That moves you from D to Cabove average

Track your AI visibility over time

AI Visibility Monitoring

We check AI prompts weekly across ChatGPT, Perplexity, and Google AI. See how often your brand appears.

Competitor Tracking

Compare your AI visibility against competitors. Know when they overtake you.

Weekly Digest

Get AI-generated insights emailed every Monday with action items.

Start monitoring — from $49/mo

Free tier available · No credit card required

Industry Benchmark

SEO
Avg: 62+30Ahead
AI Readiness
Avg: 35-1Behind
Performance
Avg: 55-11At risk
Security
Avg: 40+5On par
Accessibility
Avg: 68+22Ahead

Based on 120+ websites scanned across industries. See full benchmark report →

What This Score Means for You

Not AI-ready — ChatGPT, Perplexity, and Google AI Overviews likely cannot cite your site. You're invisible to the fastest-growing search channel.

Security gaps — Missing security headers may flag your site as unsafe in browsers, hurting trust and conversions.

Slow loading — Sites loading in 3+ seconds lose 53% of mobile visitors (Google data).

Most of these issues have simple, copy-paste fixes. Check the code snippets above for quick solutions.

Security score: 45/100

Most security issues are 5-minute fixes — adding HTTP headers to your server config. Check the code fixes above for the exact headers to add — we include copy-paste code for Nginx, Apache, Vercel, and Netlify.

Recent scans on Foglift

Scan your own site free →