Lighthouse Performance Audits for Any Website
GET /audit?url=https://example.com
Returns all categories: Performance, Accessibility, Best Practices, SEO
GET /audit?url=https://example.com&quick=true
Faster! Only runs performance audit (~15-20s instead of 30-40s)
GET /audit?url=https://example.com&strategy=mobile
GET /audit?url=https://example.com&strategy=desktop
Test mobile or desktop experience (default: desktop)
GET /audit?url=https://example.com&categories=performance,seo
performance - Core Web Vitals & speed metricsaccessibility - A11y compliancebest-practices - Web best practicesseo - SEO optimization{
"url": "https://example.com",
"timestamp": "2025-10-17T12:00:00.000Z",
"strategy": "desktop",
"scores": {
"performance": 95,
"accessibility": 88,
"bestPractices": 92,
"seo": 90
},
"coreWebVitals": {
"largestContentfulPaint": {
"value": "1.2 s",
"score": 100,
"rating": "good"
},
...
},
"cached": false
}
quick=true for faster auditsBuilt with ❤️ using Lighthouse, Hono, and Bun