Get an instant on-page SEO score with actionable recommendations — free, no signup
⚙ Analyzing page SEO... This typically takes 5-15 seconds.
Get a 0-100 score and letter grade based on weighted analysis of critical SEO factors
Checks title length, meta description, Open Graph tags, canonical URL, and language attribute
Analyzes heading hierarchy (H1-H6), word count, and image alt text coverage
Checks mobile viewport, load speed, robots.txt, sitemap.xml, and structured data
Verifies image alt text coverage, language attributes, and proper semantic HTML structure
Compare your score against competitors — run audits on any public URL to find optimization gaps
Automate SEO audits in your scripts, CI/CD pipelines, or monitoring dashboards:
curl "https://51-68-119-197.sslip.io/api/seo?url=https://example.com"
import urllib.request, json
url = "https://51-68-119-197.sslip.io/api/seo?url=https://example.com"
data = json.loads(urllib.request.urlopen(url).read())
print(f"Score: {data['score']}/100 — {len(data.get('issues',[]))} issues found")
const resp = await fetch('https://51-68-119-197.sslip.io/api/seo?url=https://example.com');
const data = await resp.json();
console.log(`SEO Score: ${data.score}/100`);
data.issues.forEach(i => console.log(`[${i.severity}] ${i.message}`));
This free tool is rate-limited. For CI/CD integration, scheduled monitoring, or batch audits:
Get a Free API Key — 50 requests/day, instant:
Need more? RapidAPI — PRO 30 req/min ($9.99/mo) | ULTRA 60 req/min ($29.99/mo)