← Marketplace

Thevaultreport

Thevaultreport is an x402-native service at https://thevaultreport.com, 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. 4 endpoints listed.

Base

Offers

OfferEndpointPrice
X402 Anomalies
Ranked market anomalies: every tracked precious-metals and energy series scored by how far its latest reading sits from its own history — a composite of level extremity, 30-day z-score, and move velocity — sorted most-abnormal-first with record context. One call returns a scored anomaly watchlist that the free /snapshot omits. Optional ?limit=N for the top-N.
/m/bz-thevaultreport-com/api/x402/anomalies0.02 USDC
Comex Deliveries
COMEX daily delivery notices: issues and stops with the house-vs-customer split, per CME product and contract month. Read from CME's daily Issues and Stops report and reconciled against its own printed totals. Contract counts are per product, so never sum across product_code -- a micro contract is a tenth or a fifth of the standard one. ounces_issued/ounces_stopped are NULL for copper and aluminiu
/m/bz-thevaultreport-com/api/x402/comex/deliveries0.01 USDC
Comex Warehouse
COMEX warehouse inventory: registered, eligible and total levels plus the per-depository breakdown, by metal and date. Quantities are in CME's reporting unit per metal: troy ounces for gold/silver/platinum/palladium, SHORT TONS for copper, metric tonnes for aluminum/zinc/lead. Extracted from CME's daily warehouse PDFs.
/m/bz-thevaultreport-com/api/x402/comex/warehouse0.01 USDC
Cot Positioning
CFTC Commitments of Traders — weekly disaggregated futures positioning by commodity: managed-money long/short/net, producer-merchant, swap-dealer, and open interest. 20-year history, cleaned and canonicalized from the CFTC feed. Filter by commodity (gold/silver/copper/platinum/palladium/wti_crude).
/m/bz-thevaultreport-com/api/x402/cot/positioning0.01 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-thevaultreport-com/api/x402/anomalies')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-thevaultreport-com/api/x402/anomalies
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …