← Marketplace
Base
Solenrich
Solenrich is an x402-native service at https://api.solenrich.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. 12 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Check Alerts Invoke Poll-based event detection for spot + Jupiter Perps. Pass a watchlist (<=10 tokens, <=10 wallets) and a `since` ISO 8601 timestamp; get alerts fired since then. Token alerts: price spikes/drops, whale inflow/outflow, concentration shifts. Wallet alerts: risk changes, portfolio value moves, position add/remove. Perps alerts per wallet: position add/close, at-risk, liquidation-approaching, pnl-swing | /m/bz-api-solenrich-com/entrypoints/check-alerts/invoke | 0.008 USDC |
Enrich Token Full Invoke Adds top 20 holders, HHI concentration index, volatility metrics, slippage estimates to light token analysis. | /m/bz-api-solenrich-com/entrypoints/enrich-token-full/invoke | 0.004 USDC |
Enrich Token Light Invoke Price (median of 3 sources), market cap, volume, liquidity, slippage estimates at 4 position sizes, risk flags, verification status. | /m/bz-api-solenrich-com/entrypoints/enrich-token-light/invoke | 0.002 USDC |
Enrich Wallet Light Invoke SOL balance, token holdings, NFT breakdown (collected vs compressed airdrops vs suspected spam, with a per-collection list), labels (including behavioral flags: regular_intervals, high_frequency, 24_7_active, repetitive_actions — algorithmic signals from tx timing that indicate automated activity), risk score. Fast and cheap. | /m/bz-api-solenrich-com/entrypoints/enrich-wallet-light/invoke | 0.002 USDC |
Gacha Ev Scan Invoke Jupiter Gacha (Collector Crypt) tokenized-card pack EV scan. For each pack machine, computes net-of-exit-mechanics EV: gross insured EV vs the guaranteed instant-buyback floor (85-93%% of insured, <=72h) vs a marketplace sale (insured value minus 2%% fee, fill-risk). Returns a POSITIVE_EV / HOUSE_EDGE / NEGATIVE_EV verdict per machine plus rare+epic stock share, ranked by the chosen exit path. All | /m/bz-api-solenrich-com/entrypoints/gacha-ev-scan/invoke | 0.02 USDC |
Hyperliquid Smart Money Invoke Where Hyperliquid smart money is positioned. Scans the HL leaderboard, excludes market-makers/HFT and dust/mega accounts, keeps consistent directional traders (week+month PnL > 0), then aggregates their live positions into a per-coin consensus (long/short counts, net notional, bias, conviction) plus a top-trader drill-down ranked by month PnL. A positioning signal, not a trade: consensus is often | /m/bz-api-solenrich-com/entrypoints/hyperliquid-smart-money/invoke | 0.05 USDC |
Hyperliquid Trader Profile Invoke Live perp positions for a Hyperliquid EVM (0x) address, read from Hyperliquid's public on-chain state. Per-position coin, side, leverage, notional, entry, unrealized PnL, distance-to-liquidation, and risk flags (high/extreme leverage, approaching liquidation, losing). Plus account value, directional bias, profile, weighted leverage, and realized+unrealized PnL over week/month/all-time. The buildin | /m/bz-api-solenrich-com/entrypoints/hyperliquid-trader-profile/invoke | 0.012 USDC |
Perps Trader Profile Invoke Open positions across BOTH Jupiter Perps and Adrena for a wallet. Per-position size, leverage, entry, unrealized PnL, position age. Per-venue breakdown via `by_venue`, combined totals at top level, every position tagged with `venue`. Trader classification (scalper/swing/position), directional bias, and risk flags including `multi_venue` for cross-venue exposure. Adrena PnL uses jitoSOL/WBTC/BONK m | /m/bz-api-solenrich-com/entrypoints/perps-trader-profile/invoke | 0.01 USDC |
Query Invoke Plain English questions routed to the right enricher(s). Single-intent ("is X safe?") hits one enricher; compound intents chain 2-3 in parallel: "should I buy X?" → DD + trend + whales; "wallet deep dive" → profile + history + perps; "what's trending?" → trending-signals; "SOL-PERP funding rate" → perps-market. | /m/bz-api-solenrich-com/entrypoints/query/invoke | 0.003 USDC |
Runner Scan Invoke Finds fresh Solana memecoins whose on-chain buying is accelerating — the signature of a run in progress, not the lagging fact that price already moved. Measures buy-rate acceleration (5m vs 1h, 1h vs 6h), buy pressure, volume acceleration, price velocity, holder growth and liquidity trend. Classifies RUNNING / IGNITING / PARABOLIC_LATE / FADING with a 0-1 score plus reasoning. Flags wash-trade sme | /m/bz-api-solenrich-com/entrypoints/runner-scan/invoke | 0.04 USDC |
Smart Money Trenches Invoke Which proven-winner wallets are aping fresh (<6h) memecoin launches right now, and what are they buying? Vetted seed set of realized-PnL winners + conviction holders (bot-filtered, live cadence re-checked every scan). Recent buys overlaid against token launch times, ranked by distinct smart buyers + recency. Pre-ape attention signal — pair with due-diligence. | /m/bz-api-solenrich-com/entrypoints/smart-money-trenches/invoke | 0.05 USDC |
Whale Watch Invoke Top holders with accumulation/distribution tracking, balance context, supply percentage. | /m/bz-api-solenrich-com/entrypoints/whale-watch/invoke | 0.008 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-api-solenrich-com/entrypoints/check-alerts/invoke')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-api-solenrich-com/entrypoints/check-alerts/invoke # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …