βΏ WCAG 2.2 Accessibility Auditor β Bulk axe-core
Pricing
Pay per usage
βΏ WCAG 2.2 Accessibility Auditor β Bulk axe-core
Bulk WCAG 2.2 accessibility auditor. Render sites with Chrome, scan with axe-core, return violations, severity, and score.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Stephan Corbeil
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Audit any website for WCAG 2.2 AA compliance in seconds. Headless Chrome renders each page, axe-core scans for violations, and you get a structured report per URL β severity, WCAG tags, failing selectors, HTML snippets, and a 0-100 accessibility score.
Why this exists: Enterprise accessibility platforms (Siteimprove, AudioEye, Monsido, Deque axe DevTools Pro) charge $5kβ$100k/year for site-wide audits. The open-source axe-core engine they all use under the hood is free and MPL-licensed. This actor wraps axe-core in a headless Chrome runner with a clean JSON output β so devs, agencies, and SMBs can audit hundreds of pages for cents, then fix issues without paying for a dashboard they'll check twice a year.
π Features
- WCAG 2.2 AA by default β includes
wcag2a,wcag2aa,wcag21aa,wcag22aatag sets - axe-core 4.10.0 β same engine used by Deque, Microsoft Accessibility Insights, Google Lighthouse
- Bulk mode β audit 100 URLs in one run, pay per URL audited
- Severity breakdown β critical / serious / moderate / minor counts per page
- Top-25 failing rules β with CSS selector, HTML snippet, and human-readable failure summary
- 0-100 accessibility score β severity-weighted, deterministic, comparable across runs
- Real browser rendering β catches client-side React / Vue / Angular issues that static HTML scanners miss
- Custom WCAG tag config β audit against 2.0, 2.1, 2.2, or best-practice only
πΌ Common Use Cases
- Legal compliance β ADA, EN 301 549, Section 508 spot-checks before launch
- Agencies & consultancies β white-label audits for client sites at bulk pricing
- CI/CD gating β fail builds on critical WCAG violations
- Pre-redesign baseline β scan the current site before a redesign, track improvement
- SEO audits β accessibility overlaps with SEO (alt text, heading structure, link labels)
- Procurement β audit vendor SaaS tools you're evaluating for a11y compliance
- Lawsuit risk reduction β screen for low-hanging a11y issues that drive serial-plaintiff demand letters
π₯ Input Example
{"urls": ["https://example.com/","https://example.com/products","https://example.com/checkout"],"wcagTags": ["wcag2a", "wcag2aa", "wcag22aa"],"timeoutMs": 25000}
π€ Output (per URL)
{"url": "https://example.com/","audit_engine": "axe-core 4.10.0","wcag_version": "2.2","total_violations": 7,"total_passes": 38,"total_incomplete": 2,"total_inapplicable": 62,"severity_breakdown": {"critical": 1,"serious": 3,"moderate": 2,"minor": 1},"wcag_tag_coverage": {"wcag2a": 4,"wcag2aa": 5,"wcag22aa": 1},"accessibility_score": 62,"top_violations": [{"rule_id": "color-contrast","impact": "serious","description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds","help": "Elements must meet minimum color contrast ratio thresholds","help_url": "https://dequeuniversity.com/rules/axe/4.10/color-contrast","wcag_tags": ["wcag2aa", "wcag143"],"affected_nodes": 8,"sample_selectors": [".nav-link", ".btn-secondary", "footer a"],"sample_html": ["<a class='nav-link' ...", "<button class='btn-secondary' ...", "<a href='/privacy' ..."],"failure_summary": "Fix any of the following:\n Element has insufficient color contrast of 3.2:1 ..."}]}
π Python SDK Example
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("nexgendata/wcag-accessibility-auditor").call(run_input={"urls": ["https://example.com/","https://example.com/about"]})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(f"{item['url']} β score {item['accessibility_score']} "f"({item['total_violations']} violations)")for v in item["top_violations"][:3]:print(f" [{v['impact']}] {v['rule_id']} β {v['affected_nodes']} nodes")
π cURL Example
curl -X POST "https://api.apify.com/v2/acts/nexgendata~wcag-accessibility-auditor/run-sync-get-dataset-items?token=YOUR_TOKEN" \-H "Content-Type: application/json" \-d '{"urls": ["https://example.com/"]}'
π Zapier / Make.com / GitHub Actions Integration
- GitHub Action β run on every PR, comment on violations introduced
- Zapier β new page published in CMS β audit β Slack alert if score drops
- Weekly cron β scan your whole sitemap, track score trends over time
β FAQ
Q: What's the difference between this and Google Lighthouse's accessibility audit? Lighthouse also uses axe-core under the hood, but runs only on one page at a time from DevTools. This actor is a bulk API wrapper β run it on 500 URLs programmatically and get machine-parseable JSON per page.
Q: What WCAG version is covered?
WCAG 2.0, 2.1, and 2.2 (Level A and AA) by default. Configure the wcagTags input to narrow to a specific version.
Q: Does this catch all accessibility issues? No automated tool does. axe-core catches roughly 30-40% of WCAG issues β primarily the objective ones (color contrast, missing alt text, missing labels, ARIA misuse). Human testing with screen readers is still needed for the full picture. But automated audits are the cheapest way to catch the bulk of fixable issues fast.
Q: Does it handle logged-in pages? Not yet. Pass only publicly-accessible URLs for now. Authentication support is on the roadmap.
Q: What's the accessibility score based on? Severity-weighted deduction: critical=-15, serious=-8, moderate=-3, minor=-1, scaled by affected node count. A clean site scores 100; typical SMB sites land in 50-80 range.
Q: Is axe-core's output reliable? Yes. axe-core is maintained by Deque Systems (the accessibility firm), is used by Microsoft, Google, IBM, Adobe, and has the lowest false-positive rate of any automated a11y scanner. It's the industry standard.
π° Pricing (Pay-Per-Event)
- Actor start: $0.005
- URL audited: $0.01
Typical run cost: 100-URL scan = $1.005. Compare with Siteimprove (~$10k/yr starter plans) or enterprise axe DevTools Pro ($495/user/yr).
π Related NexGenData Actors
- Facebook Ads Library Scraper β research competitor ads for a/b positioning
- Google Trends Scraper β track accessibility search interest
- SaaS Pricing Tracker β compare a11y tool pricing
π Apify Affiliate Program
New to Apify? Sign up with our referral link for free platform credits.
Automated WCAG 2.2 AA auditing for developers, agencies, and procurement teams who need real accessibility scans without enterprise SaaS pricing. Built by NexGenData.