← All tools

AI Agent Readiness Scan

Run 30+ checks against any URL to produce an agent-readiness score and a list of actionable issues.

Endpoint

POST/aeo/scan

Authentication

Pass your API key with each request. To request access, contact the team at hello@w3dev.app.

Authorization: Bearer <api-key>

Request

{
  "url": "https://example.com"
}

Example curl

curl -X POST "https://browser.w3dev.app/aeo/scan" \
  -H "Authorization: Bearer <api-key>" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com"}'

Response

{
  "score": 74,
  "scannedUrl": "https://example.com",
  "checks": [
    {
      "checkKey": "missing_robots_txt",
      "severity": "critical",
      "title": "robots.txt missing",
      "category": "Discoverability",
      "whyItMatters": "...",
      "detectedAt": "/robots.txt",
      "fixPrompt": "...",
      "passed": true
    }
  ],
  "issues": [ ... ]
}

Checks covered

Live test

Enter any URL to run a scan and see the raw API response.