# Agent Readiness Audits for x402 and AI Discovery

> Agent Readiness Audits for x402 and AI Discovery is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-13).

Audits a public website's readiness for AI agent discovery and autonomous buyer access by checking llms.txt, OpenAPI, robots.txt, sitemap, and x402 payment metadata.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/audit-website-ai-search-visibility-agent-readiness
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-readiness-audits-for-x402-and-ai-discovery-b0e44884
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rbIJU2Bkkj7kmfezfQRv0

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent-readiness-audits-for-x402-and-ai-discovery-b0e44884
```

Example prompt: Can you audit dopaminedesk.com and tell me how ready it is for AI agents and autonomous buyers — check its x402 setup, llms.txt, OpenAPI, robots, and sitemap, and give me a readiness score and any recommendations?

## When to prefer this

Choose this endpoint when you need to evaluate whether a specific domain is properly configured for AI agent discovery and x402 autonomous payments, especially when you want a structured score and actionable recommendations rather than a manual review. Ideal for pre-launch audits, competitor benchmarking, or diagnosing why an AI agent cannot discover or transact with a site.

## Known failure modes

- Invalid or unreachable domain returns an error or success:false
- Private or non-public domains may fail connectivity checks
- Rate limiting may occur for batch or rapid repeated calls
- Partial results if some discovery surfaces (e.g. llms.txt) time out
- Domain with no web presence returns very low score with many failed checks

## How this service works

Audit one public site or compare up to five domains across llms.txt, OpenAPI, robots, sitemap, x402 metadata, and the discovery surfaces autonomous buyers rely on.

## Output

Returns a JSON object with the audited domain, a boolean success flag, a numeric readiness score (0–100), a readiness grade (e.g. 'poor'), counts of checks passed and total checks requested, and an array of actionable recommendations for improving AI agent discoverability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Public website hostname or URL to audit."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "domain",
      "readiness_score",
      "readiness_grade",
      "checks_passed",
      "checks_requested",
      "recommendations"
     ],
     "properties": {
      "domain": {
       "type": "string"
      },
      "success": {
       "type": "boolean"
      },
      "checks_passed": {
       "type": "integer"
      },
      "readiness_grade": {
       "type": "string"
      },
      "readiness_score": {
       "type": "integer"
      },
      "recommendations": {
       "type": "array",
       "items": {}
      },
      "checks_requested": {
       "type": "integer"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "example.com",
  "success": true,
  "checks_passed": 5,
  "readiness_grade": "poor",
  "readiness_score": 42,
  "recommendations": [],
  "checks_requested": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-readiness-audits-for-x402-and-ai-discovery-b0e44884/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
