# Mudko Batch Agent-Readiness Scanner

> Mudko Batch Agent-Readiness Scanner is a paid API for AI agents from mudko.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Scans up to 50 URLs at once and returns per-URL agent-readiness verdicts (level 0-5, passing checks, top gaps) in a single paid API call.

## Facts

- Endpoint: GET https://mudko.com/api/x402/batch-scan
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mudko-batch-agent-readiness-scanner-4de1c66e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s89hAeZLkt4EJ_sKih8Z5

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 mudko-batch-agent-readiness-scanner-4de1c66e
```

Example prompt: Scan these 20 client sites for agent readiness and give me a verdict for each — level, what they're passing, and their biggest gaps: https://acme.com, https://beta.io, https://gamma.co, https://delta.ai, https://epsilon.dev, https://zeta.com, https://eta.io, https://theta.co, https://iota.ai, https://kappa.dev, https://lambda.com, https://mu.io, https://nu.co, https://xi.ai, https://omicron.dev, https://pi.com, https://rho.io, https://sigma.co, https://tau.ai, https://upsilon.dev

## When to prefer this

Use this endpoint when you need to audit more than one URL at a time — agencies checking client sites, VCs auditing a portfolio, or anyone needing to bypass rate limits on bulk checks. For a single URL with full evidence detail, use the free /api/x402/deep-scan endpoint instead.

## Known failure modes

- Too many URLs submitted (max 50 per call) — request rejected
- Payment insufficient — 402 response quoting exact price based on URL count
- Malformed or unreachable URLs in the list — partial results or per-URL errors
- Minimum charge not met (below $0.10) — 402 response with minimum amount
- Rate limit exceeded without payment — 402 payment required to bypass

## How this service works

Bulk agent-readiness screening for agencies, VCs and portfolio owners: scan up to 50 URLs in one paid call ($0.02/URL, $0.10 minimum) and get a compact per-URL verdict — level 0-5, passing checks, top gaps. The single-URL scan with full evidence stays free at /api/x402/deep-scan; this buys scale and rate-limit bypass.

## Output

A JSON array with one entry per submitted URL, each containing: agent-readiness level (0-5), list of passing checks, and top identified gaps. Also includes a total count of processed URLs.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "urls"
     ],
     "properties": {
      "urls": {
       "type": "string",
       "description": "Comma-separated URLs (max 50). Price = $0.02 x count, min $0.10 — the 402 quotes the exact amount."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "results": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mudko-batch-agent-readiness-scanner-4de1c66e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mudko.com](https://www.zero.xyz/host/mudko.com/llms.txt)
