mirrored listing x402 eip155:8453

Diagnose why an x402 seller is invisible on Coinbase Bazaar

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.

Do you run quietstore-production.edge-7e13f.workers.dev? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-20
updated

Provider

quietstore-production.edge-7e13f.workers.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x8f9ef7f8c4744bfaedaa5d315c21f9770c10f931",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "payment_required": {
            "accepts": [],
            "extensions": {
              "bazaar": {
                "info": {},
                "schema": {}
              }
            },
            "resource": {
              "description": "Example paid resource",
              "mimeType": "application/json",
              "url": "https://example.com/v1/item"
            },
            "x402Version": 2
          }
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "metered": true,
          "result": {
            "findings": [
              {
                "code": "BAZAAR_INPUT_SHAPE",
                "message": "...",
                "severity": "error"
              }
            ],
            "grade": "B",
            "pass": false,
            "score": 72
          },
          "tool": {
            "id": "tool-x402-bazaar-audit",
            "price_version": 1,
            "title": "Will my x402 endpoint show up on Bazaar?"
          }
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://quietstore-production.edge-7e13f.workers.dev/v1/tools/x402-bazaar-audit"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://quietstore-production.edge-7e13f.workers.dev/v1/tools/x402-bazaar-audit");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://quietstore-production.edge-7e13f.workers.dev/v1/tools/x402-bazaar-audit")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/5390.json, and this resource appears in /discovery/resources and /discovery/search.