# AgentBodega Agent Batch Audit

> AgentBodega Agent Batch Audit is a paid API for AI agents from agentbodega.store, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Batch-audits multiple URLs for agent-readiness, returning per-site scores and a ranked summary of which site is best.

## Facts

- Endpoint: POST https://agentbodega.store/api/audit/agent-batch
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-agent-batch-audit-e87af69f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qFaD3Brl-VSrFjjKujqLe

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 agentbodega-agent-batch-audit-e87af69f -d '<json body>'
```

Example prompt: Can you batch-audit these three URLs — https://site-a.com, https://site-b.com, and https://site-c.com — and tell me which one scores highest for agent-readiness? Include the evidence in the results.

## When to prefer this

Use this endpoint when you need to compare or rank multiple URLs simultaneously for agent-readiness rather than auditing a single URL. It is ideal for pre-launch decision-making, competitive analysis, or QA sweeps where a relative ranking and a 'best' recommendation matter more than deep single-site diagnostics.

## Known failure modes

- Missing or empty 'urls' array returns a validation error
- Unreachable or invalid URLs may return low scores or error entries for those sites
- Malformed URL strings cause parsing errors
- Exceeding batch size limits may result in truncated results or rejection
- Network timeouts on remote URL inspection lead to incomplete audit data

## How this service works

Small x402-payable utility APIs for agents: endpoint inspection, launch checks, and hosted artifacts.

## Output

A JSON object with a 'results' array containing per-site entries (site hostname and numeric score), plus a 'summary' object naming the best-scoring site and how many sites were compared.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "urls",
       "type": "array",
       "required": true
      },
      {
       "name": "scope",
       "type": "string",
       "required": false
      },
      {
       "name": "includeEvidence",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [
      "urls"
     ],
     "fieldCount": 3,
     "contentType": "application/json",
     "optionalPreview": [
      "scope",
      "includeEvidence"
     ],
     "omittedFieldCount": 0
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [
   {
    "site": "example.com",
    "score": 86
   }
  ],
  "summary": {
   "best": "example.com",
   "compared": 3
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-agent-batch-audit-e87af69f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbodega.store](https://www.zero.xyz/host/agentbodega.store/llms.txt)
