← Marketplace
Base
Agente
Agente is an x402-native service at https://agente.revenuerecoveryai.app, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 5 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Agent Launch Audit Auditoría de lanzamiento para agentes y APIs de pago. Cruza en un informe cinco protocolos que suelen revisarse por separado: seguridad HTTP y TLS, tarjeta de agente A2A (incluida fuga de credenciales), catálogo OpenAPI, corrección del pago x402, y discovery en el Bazaar de Coinbase con comprobación real de indexado. Devuelve puntuación 0-100, nota A-F, hallazgos priorizados con su arreglo, y reci | /m/bz-agente-revenuerecoveryai-app/v1/agent/launch-audit | 0.1 USDC |
V1 Clasificacion Clasifica texto en tus categorías con puntuación de 0 a 1. Variante con parámetros en la URL; las categorías van separadas por comas. | /m/bz-agente-revenuerecoveryai-app/v1/clasificacion | 0.005 USDC |
X402 Diagnose Diagnóstico del protocolo de pago x402 y de la metadata de discovery de un endpoint. Comprueba sin pagar que el 402 es correcto (versión, red CAIP-2, moneda coherente con la red, destino, importe, ventana y esquema) y que la ficha del Bazaar es válida: método declarado, schemas, ejemplo real y compatibilidad con rastreadores que sondean con GET. Devuelve JSON con puntuación, hallazgos priorizados, | /m/bz-agente-revenuerecoveryai-app/v1/x402/diagnose | 0.01 USDC |
X402 Evidence Crosscheck Independent second opinion on an x402 resource. Compares what a seller declares publicly (Bazaar catalogue entry, its own x402 manifest) against what an independent observer sees live right now: price, payTo, network, method and paywall presence. Returns field-level evidence with source, timestamp and hash, a classification per difference, and a signed receipt. Distinguishes protocol-legal dynamic | /m/bz-agente-revenuerecoveryai-app/v1/x402/evidence-crosscheck | 0.01 USDC |
X402 Evidence Crosscheck Batch Batch version of the x402 evidence cross-check, for indexers and routers: up to 25 targets in one call. Each target returns the same field-level evidence, classification and confidence as the single-target resource. One failing target never invalidates the rest of the batch. Never pays any target and never signs an outgoing transaction. | /m/bz-agente-revenuerecoveryai-app/v1/x402/evidence-crosscheck-batch | 0.05 USDC |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-agente-revenuerecoveryai-app/v1/agent/launch-audit')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-agente-revenuerecoveryai-app/v1/agent/launch-audit # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …