REST API integration, webhooks, and automated testing that fits seamlessly into your builds
Find and fix accessibility issues before they reach production
Run accessibility scans on every pull request. Catch issues before they're merged into your main branch.
Integrate accessibility testing into your existing CI/CD pipeline. No manual intervention required.
Receive immediate feedback on accessibility issues. Block merges if critical problems are detected.
Built by developers, for developers
Full programmatic access to all features via a clean, RESTful API. Trigger scans, retrieve results, generate reports, and manage projects—all from your code.
Native integrations for GitHub Actions, GitLab CI, Jenkins, CircleCI, and Azure DevOps. Add accessibility testing to your pipeline in minutes.
Configure webhooks to receive real-time notifications when scans complete, new issues are found, or compliance status changes.
Access raw JSON test results with CSS selectors, WCAG criteria, severity levels, and remediation guidance. Perfect for custom reporting and tracking.
Integrate accessibility testing in minutes with our straightforward API
// Trigger a new scan
const response = await fetch(
'https://api.a11yscan.com/v1/scans',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://example.com',
depth: 3,
waitForSelector: '.main-content'
})
}
);
const { scanId } = await response.json();// Get scan results
const results = await fetch(
`https://api.a11yscan.com/v1/scans/${scanId}`,
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
}
).then(r => r.json());
// Check compliance
if (results.criticalIssues > 0) {
console.error('Critical issues found!');
process.exit(1);
}See how dev teams integrate A11yScan into their workflow
Run accessibility scans on every pull request. Block merges if critical issues are detected. Add scan summaries as PR comments.
✓ Catch issues before merge • ✓ Automated comments • ✓ Status badges
Automatically scan your site after every deployment. Send alerts to Slack if regressions are detected. Maintain compliance over time.
✓ Automated triggers • ✓ Slack alerts • ✓ Regression detection
Use the API to scan localhost or staging environments. Test accessibility before pushing to production. Perfect for CI/CD pipelines.
✓ Private site scanning • ✓ Pre-production testing • ✓ Fast feedback
Export raw JSON results and build custom dashboards. Track trends over time. Integrate with your existing analytics and monitoring tools.
✓ JSON/CSV exports • ✓ Custom dashboards • ✓ Trend analysis
Integrate accessibility testing into your workflow today
14-day free trial • Full API access • No credit card required