AgentBIT
← all tools

Website Agent Readiness

Audit any website for AI-agent readiness: robots.txt, llms.txt, sitemap, schema.org, AI crawler access, security headers. Returns 0-100 score.

$0.05
USDC per call · x402
Endpoint
POST /v1/website/agent-readiness
MCP name
agentbit.website_agent_readiness
Status
active
Latency / uptime (7d)
113 ms · 100%

Call with x402

1. Send the request. 2. Receive 402 with accepts[]. 3. Sign the payment and retry with the X-PAYMENT header.

curl -X POST https://agentbit.app/v1/website/agent-readiness \
  -H 'Content-Type: application/json' \
  -d '{"url":"https://example.com"}'

Input schema

{
    "type": "object",
    "properties": {
        "url": {
            "type": "string"
        }
    },
    "required": [
        "url"
    ]
}

Output schema

{
    "type": "object",
    "properties": {
        "score": {
            "type": "integer"
        },
        "checks": {
            "type": "object",
            "properties": [],
            "required": []
        },
        "issues": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "recommendations": {
            "type": "array",
            "items": {
                "type": "string"
            }
        }
    },
    "required": []
}

Code examples

// JavaScript (x402-fetch)
import { wrapFetchWithPayment } from "x402-fetch";
const fetchWithPay = wrapFetchWithPayment(fetch, wallet);
const r = await fetchWithPay("https://agentbit.app/v1/website/agent-readiness", {
  method: "POST",
  headers: {"Content-Type": "application/json"},
  body: JSON.stringify({"url":"https://example.com"})
});
console.log(await r.json());
# Python (x402 client)
from x402.clients.requests import x402_requests
s = x402_requests(account)
r = s.post("https://agentbit.app/v1/website/agent-readiness",
  json={"url":"https://example.com"})
print(r.json())
// PHP
$r = Http::withHeaders(['X-PAYMENT' => $signedPayment])
  ->post('https://agentbit.app/v1/website/agent-readiness',
    array (
  'url' => 'https://example.com',
));
$data = $r->json();