Audits a website for AI agent and AI crawler readiness from artefacts the caller supplies:
Audits a website for AI agent and AI crawler readiness from artefacts the caller supplies: robots.txt, HTML, response headers, llms.txt, sitemap lastmod values, /.well-known paths. Names the crawler policy per bot (GPTBot, ClaudeBot, PerplexityBot, CCBot, Google-Extended, Amazonbot, Applebot, Bytespider) and reports what it could not measure instead of guessing. Makes no outbound request.
10000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-17
updated
Provider
api.ozdreamtools.de · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x4Dd5E59475A55f1C2c0816469600663cb74cC1Dc",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"headers": {
"content-type": "text/html"
},
"robots_txt": "User-agent: GPTBot\nDisallow:\n"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"assessed_at": "2026-07-23T09:00:00.000Z",
"not_measured": [
"sitemap_freshness"
],
"score": {
"hint": "…",
"max": 10,
"points": 6
},
"signals": [
{
"facts": {},
"key": "robots_ai_policy",
"status": "weak"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"headers": {
"description": "Response headers of the same page",
"type": "object"
},
"html": {
"description": "Full HTML of a representative page",
"type": "string"
},
"llms_txt": {
"description": "Contents of /llms.txt",
"type": "string"
},
"robots_txt": {
"description": "Contents of /robots.txt",
"type": "string"
},
"sitemap_lastmods": {
"description": "lastmod values from the sitemap, ISO dates",
"items": {
"type": "string"
},
"type": "array"
},
"well_known": {
"description": "Paths that exist under /.well-known/",
"items": {
"type": "string"
},
"type": "array"
}
}
},
"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://api.ozdreamtools.de/api/agent-ready/assess" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.ozdreamtools.de/api/agent-ready/assess");
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://api.ozdreamtools.de/api/agent-ready/assess")
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/3600.json, and this resource appears in /discovery/resources and /discovery/search.