{
  "x402Version": 2,
  "id": 4537,
  "slug": "4537",
  "resource": "https://anywaypossible.com/api/merchant-audit",
  "description": "Audit why an x402 API is not generating revenue. This full seller-intelligence report analyzes Coinbase Bazaar ranking, exact buyer searches, listing defects, competitor pricing, live payment reliability, 30-day payer signals, and Base USDC activity, then returns three prioritized revenue fixes. No account or API key.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xe5690D37805107C56f6195E65A262b234E0E5e75",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "250000",
      "maxTimeoutSeconds": 60
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "excludePayers": [
              "0x44D2DC46f987D1F2fa55e281934aDDd193a1A377"
            ],
            "payTo": "0xe5690D37805107C56f6195E65A262b234E0E5e75",
            "queries": [
              "x402 merchant analytics",
              "Base wallet balance",
              "agent treasury"
            ]
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "actions": [
              "Publish a copy-paste buyer example and recruit three independent agents before adding more endpoints."
            ],
            "auditId": "b7d4...",
            "grade": "C",
            "limitations": [
              "Public discovery and onchain transfers cannot prove that every inbound payment is customer revenue."
            ],
            "listings": [
              {
                "metadataCompleteness": 100,
                "priceUsd": 0.1,
                "reliability": {
                  "responseTimeMs": 320,
                  "status": 402,
                  "x402Ready": true
                },
                "resource": "https://api.example.com/report"
              }
            ],
            "merchant": "0xe5690d37805107c56f6195e65a262b234e0e5e75",
            "network": "Base (eip155:8453)",
            "observedAt": "2026-08-16T17:00:00.000Z",
            "onchain": {
              "excludedInboundUsdc": 0.804,
              "externalInboundUsdc": 0.004,
              "onchainInboundUsdc": 0.808,
              "recentInboundUsdc": [],
              "sampleLimited": false,
              "uniqueExternalPayers": 2
            },
            "rankings": [
              {
                "matchedResource": "https://api.example.com/report",
                "query": "x402 merchant analytics",
                "rank": 1,
                "resultCount": 10,
                "topCompetitors": []
              }
            ],
            "score": 72,
            "scoreBreakdown": {
              "buyerReach": 0,
              "listings": 20,
              "metadata": 17,
              "recency": 5,
              "reliability": 20,
              "visibility": 10
            },
            "summary": {
              "excludedInboundUsdc": 0.804,
              "externalInboundUsdc": 0.004,
              "indexedCalls30d": 18,
              "latestActivity": "2026-08-16T16:58:27.000Z",
              "listingCount": 6,
              "maxResourceUniquePayers30d": 2,
              "onchainInboundUsdc": 0.808,
              "uniqueExternalPayers": 2
            }
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "excludePayers": {
                    "items": {
                      "pattern": "^0x[a-fA-F0-9]{40}$",
                      "type": "string"
                    },
                    "maxItems": 10,
                    "type": "array"
                  },
                  "payTo": {
                    "description": "Seller wallet on Base",
                    "pattern": "^0x[a-fA-F0-9]{40}$",
                    "type": "string"
                  },
                  "queries": {
                    "items": {
                      "maxLength": 100,
                      "minLength": 2,
                      "type": "string"
                    },
                    "maxItems": 5,
                    "minItems": 1,
                    "type": "array"
                  }
                },
                "required": [
                  "payTo",
                  "queries"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "actions": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "auditId": {
                    "type": "string"
                  },
                  "grade": {
                    "type": "string"
                  },
                  "limitations": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "listings": {
                    "items": {
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "merchant": {
                    "type": "string"
                  },
                  "network": {
                    "type": "string"
                  },
                  "observedAt": {
                    "type": "string"
                  },
                  "onchain": {
                    "type": "object"
                  },
                  "rankings": {
                    "items": {
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "score": {
                    "type": "integer"
                  },
                  "scoreBreakdown": {
                    "type": "object"
                  },
                  "summary": {
                    "type": "object"
                  }
                },
                "required": [
                  "auditId",
                  "merchant",
                  "network",
                  "observedAt",
                  "score",
                  "grade",
                  "scoreBreakdown",
                  "summary",
                  "listings",
                  "rankings",
                  "onchain",
                  "actions",
                  "limitations"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    },
    "builder-code": {
      "info": {
        "a": "anyway_possible",
        "s": [
          "cdp_sdk_server"
        ]
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "additionalProperties": false,
        "properties": {
          "a": {
            "description": "App builder code",
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          },
          "s": {
            "description": "Service builder codes",
            "items": {
              "pattern": "^[a-z0-9_]{1,32}$",
              "type": "string"
            },
            "maxItems": 11,
            "type": "array"
          },
          "w": {
            "description": "Wallet builder code",
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          }
        },
        "type": "object"
      }
    },
    "eip2612GasSponsoring": {},
    "erc20ApprovalGasSponsoring": {}
  },
  "tags": [
    "bazaar",
    "builder-code",
    "eip2612GasSponsoring",
    "erc20ApprovalGasSponsoring"
  ],
  "sourceHost": "anywaypossible.com",
  "lastUpdated": "2026-09-07T20:41:44.047Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-07T20:41:43.447Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "anywaypossible.com",
    "manifest_name": "anywaypossible.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}