API v1.1 — Webhook Support + Audit API

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

terminal — bash
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

response.json
{
  "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

FieldTypeRequiredDescription
urlstringRequiredURL to audit (e.g. https://nike.com)
include_violationsbooleanOptionalInclude violation details in response (default: true)
webhook_urlstringOptionalURL 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.