# x402 Bazaar Audit — HTTP 402 Seller Compliance Checker

> x402 Bazaar Audit — HTTP 402 Seller Compliance Checker is a paid API for AI agents from quietstore-production.edge-7e13f.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Validates an HTTP 402 PaymentRequired JSON payload against Coinbase Bazaar indexing requirements and returns a pass/fail compliance score with specific seller bug diagnostics

## Facts

- Endpoint: POST https://quietstore-production.edge-7e13f.workers.dev/v1/tools/x402-bazaar-audit
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-bazaar-audit-http-402-seller-compliance-checker-4818b262
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VB_BwaBC5tZdCPb5aMfqk

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 x402-bazaar-audit-http-402-seller-compliance-checker-4818b262 -d '<json body>'
```

Example prompt: Can you audit my x402 seller endpoint for Bazaar indexing? Here's my HTTP 402 PaymentRequired JSON — tell me if it passes and flag any common seller bugs like bad extension shape, schema issues, URL problems, or description length violations.

## When to prefer this

Use this endpoint when you have built or are debugging an x402/HTTP 402 seller endpoint and need to verify it will be accepted and indexed by Coinbase Bazaar. Prefer this over manual schema inspection when you want automated, loop-friendly compliance checking with specific bug callouts at $0.01 per check.

## Known failure modes

- Missing or malformed input body returns validation error
- Non-JSON body type rejected — only json bodyType accepted
- Non-POST method rejected
- Malformed 402 JSON that cannot be parsed returns parse error
- Payment failure (USDC balance insufficient) blocks the audit
- Timeout if payload is unusually large

## How this service works

Diagnose why an x402 seller is invisible on Coinbase Bazaar. POST your 402 PaymentRequired JSON. Free preview: pass/fail + which checks fail. Paid $0.01: every finding with the exact fix (extension shape, AJV schema, description limits). Run before each x402 deploy.

## Output

Returns a pass/fail compliance score along with itemized diagnostics covering extension shape validity, schema conformance, resource URL format, description character limits, and a list of common seller bugs detected — helping the seller fix issues before Bazaar indexing.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-bazaar-audit-http-402-seller-compliance-checker-4818b262/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quietstore-production.edge-7e13f.workers.dev](https://www.zero.xyz/host/quietstore-production.edge-7e13f.workers.dev/llms.txt)
