Audits a website for AI agent and AI crawler readiness from artefacts the caller
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
518 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.ozdreamtools.de/api/agent-ready/assess
| Category | Search and research |
|---|---|
| Provider host | api.ozdreamtools.de |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 518 ms |
Example input (from the provider)
{
"body": {
"headers": {
"content-type": "text/html"
},
"robots_txt": "User-agent: GPTBot\nDisallow:\n"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}