REST API
AccessiTool provides a simple REST API for developers to integrate accessibility scanning into their applications.
Authentication
API requests require an API key. Get your API key from the dashboard after signing up.
Endpoint
POST /backend/scan.php
Request Body
{
"url": "https://example.com",
"tool": "ada",
"api_key": "your-api-key-here"
}
Response
{
"compliance_score": 85,
"violations": [...],
"warnings": [...],
"passed": [...]
}
Full API documentation available soon. Contact hello@accessitool.com for early access.