Full AI-readiness audit of any website: 47 checks across 7 categories (agent permissions,
Full AI-readiness audit of any website: 47 checks across 7 categories (agent permissions, content discoverability, structured data, API/MCP infrastructure, pricing transparency, documentation, agent commerce). Returns 0-100 score, grade, per-check pass/fail and prioritized fixes. Use before recommending, buying from, or integrating with a site.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-26
updated
Provider
byfaro.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2586231a0ec268062f7ef79a290054cfd4c64aaa",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"url": "https://example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"categories": [
{
"checks": [
{
"detail": "Found Organization schema",
"id": "json-ld",
"label": "JSON-LD structured data",
"passed": true
}
],
"id": "structured-data",
"label": "Structured Data",
"maxScore": 25,
"score": 18
}
],
"grade": "C",
"scannedAt": "2026-08-26T12:00:00.000Z",
"score": 62,
"topIssues": [
{
"category": "Agent Infrastructure",
"detail": "No MCP endpoint advertised",
"fix": "Expose key actions as MCP tools",
"label": "No MCP server"
}
],
"url": "https://example.com"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"url": {
"description": "Absolute URL of the website to scan, e.g. https://example.com",
"type": "string"
}
},
"required": [
"url"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://byfaro.ai/agent/scan" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://byfaro.ai/agent/scan");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://byfaro.ai/agent/scan")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7488.json, and this resource appears in /discovery/resources and /discovery/search.