The Agent-Ready
Compliance API
Programmatically audit checkout accessibility, supply chain compliance, and AI agent readiness. Webhook support for Conway, CI/CD pipelines, and AI agent platforms.
<30s
Full scan
0.5s
Cached results
20+
WCAG signals
What the API checks
Checkout Accessibility Audit
Scan any URL for WCAG 2.2 AA violations — including inside Stripe, PayPal, and Braintree payment iframes that no other scanner can reach.
EAA + ADA Compliance
Map every violation to EAA requirements and ADA standards. Export reports for compliance documentation and regulatory filings.
AI Agent Readiness
Score whether AI shopping agents (OpenAI, Google, Amazon) can complete a purchase on your checkout. If screen readers fail, agents fail too.
Try it now
One POST request. Structured compliance data back in milliseconds.
Request
curl -X POST https://smartertariff.com/api/v1/audit \
-H "Authorization: Bearer sk_test_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://nike.com",
"include_violations": true,
"webhook_url": "https://your-app.com/hooks/smartertariff"
}'Response — AT_RISK
{
"domain": "nike.com",
"score": 55,
"violation_count": 24,
"payment_provider": "Adyen",
"compliance": {
"wcag_2_2_aa": "NEEDS_IMPROVEMENT",
"eaa_status": "AT_RISK",
"ai_agent_readiness": "PARTIAL",
"tos_risk_percent": 45
},
"violations": [
{
"rule": "color-contrast",
"impact": "serious",
"description": "Insufficient contrast ratio 2.8:1"
},
{
"rule": "label",
"impact": "critical",
"description": "Payment iframe form element missing label"
}
],
"cached": true,
"meta": { "api_version": "1.1.0" }
}Request schema
| Field | Type | Required | Description |
|---|---|---|---|
| url | string | Required | URL to audit (e.g. https://nike.com) |
| include_violations | boolean | Optional | Include violation details in response (default: true) |
| webhook_url | string | Optional | URL to POST results when scan completes (for async/Conway) |
Ready to audit programmatically?
Get started with a free test key. Webhook support for Conway, CI/CD, and AI agent platforms. Enterprise volume pricing for 10k+ scans/month.