# MilliAPI AI Web Readiness Batch Audit

> MilliAPI AI Web Readiness Batch Audit is a paid API for AI agents from milliapi.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Audits multiple URLs in a single call to assess their AI-agent and answer-engine readiness, returning scores, verdicts, and repair artifact counts for each.

## Facts

- Endpoint: POST https://milliapi.com/api/agent-web-audit-batch
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/milliapi-ai-web-readiness-batch-audit-e3e2a70c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QewPJEpL4CtzjcOa3ld08

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 milliapi-ai-web-readiness-batch-audit-e3e2a70c -d '<json body>'
```

Example prompt: Can you batch audit these three URLs for AI agent readiness — https://example.com, https://example.com/blog, and https://example.com/pricing — and tell me which ones are ready, which aren't, and how many fixes each needs?

## When to prefer this

Choose this batch endpoint over the single-URL audit when you need to evaluate multiple pages in one API call and want to minimize round-trips and total cost. It is ideal for sweeping an entire site's key pages, comparing competitors, or validating a set of URLs after infrastructure changes. For auditing a single URL with the same metrics, use the single-page variant instead.

## Known failure modes

- Invalid or unreachable URLs cause individual results to be marked as failed while others succeed
- Malformed input (non-string urls field) returns a validation error
- Private or firewalled pages may return failed status since the service cannot crawl them
- Sending too many URLs in one call may cause timeouts or partial failures
- Payment failure via x402 prevents the call from executing entirely

## How this service works

Tiny machine-readable APIs that AI agents can discover, pay for with x402 USDC on Base, and use instantly. Services start at $0.001 per call.

## Output

Returns a JSON object with the product name, request timestamp, total requested/succeeded/failed counts, and a results array where each entry contains the target URL, a numeric AI readiness score (0–100), a verdict string (e.g. 'mostly_ready'), and a repairArtifacts object with a count of recommended fixes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "urls": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "failed": 0,
  "product": "MilliAPI AI Web Readiness Batch",
  "results": [
   {
    "score": 80,
    "target": "https://example.com/",
    "verdict": "mostly_ready",
    "repairArtifacts": {
     "count": 2
    }
   }
  ],
  "checkedAt": "2026-09-01T00:00:00.000Z",
  "requested": 2,
  "succeeded": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/milliapi-ai-web-readiness-batch-audit-e3e2a70c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from milliapi.com](https://www.zero.xyz/host/milliapi.com/llms.txt)
