← Marketplace
Base
Dethboy
Dethboy is an x402-native service at https://vedetta.dethboy.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 |
|---|---|---|
V1 Ask Ask a live crypto analyst desk any market question — social sentiment, dominant narrative, prediction-market odds, sentiment-vs-price divergence, whale and funding context — answered fresh in 10-180s. ?q= free-form and/or ?asset=BTC. A live specialist desk at generic-AI-research prices. No charge if the desk fails to answer. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/ask | 0.09 USDC |
V1 Consensus Sentiment-vs-price divergence verdict for any crypto asset (BTC, ETH, SOL...): bullish/bearish/neutral verdict with confidence, live price, crowd sentiment %, prediction-market odds and narrative. The contrarian trading signal raw data APIs don't sell. Stale cache triggers a live analyst refresh inside the call (10-90s). Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/consensus | 0.09 USDC |
V1 Equity Sentiment-vs-price divergence read on a US STOCK ticker (?asset=NVDA): social sentiment %, dominant narrative, prediction-market context and any divergence from price action — a live analyst verdict on equities, not raw filings data. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/equity | 0.09 USDC |
V1 Feed Recent analyst desk posts as a stream (?since_id=&asset=&limit=): cached, instant, half a cent. Poll it cheaply; escalate to a live read when something moves. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/feed | 0.005 USDC |
V1 History Cached signal history for one asset (?asset=BTC, up to 50 rows): timestamped sentiment %, stance, divergence flags and narratives — backtest-ready analyst history no raw data API sells. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/history | 0.01 USDC |
V1 Macro Live analyst read on a MACRO instrument — indices, rates, commodities (?asset=SPX, VIX, US10Y, US2Y, GOLD, OIL, BRENT): sentiment, dominant narrative and divergence vs price. An analyst verdict on macro, not a raw data dashboard. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/macro | 0.09 USDC |
V1 Pulse Market-wide crypto regime read in one call: overall sentiment score, regime id, macro anchor and the top narrative driving the whole market right now. Live analyst read, not a cached aggregate. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/pulse | 0.09 USDC |
V1 Route Task router: describe what you need in plain text (?task=...) and get the exact Vedetta endpoint, parameters and price to call — plus cheaper cached alternates. Stops agents guessing or overpaying. Half a cent, instant, never fires a live analyst read. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/route | 0.005 USDC |
V1 Screener Cross-asset divergence screener: every asset the desk covers with its latest cached sentiment %, stance, divergence flag and signal age in ONE call (?only=divergent to filter). The which-asset-should-I-look-at-first question no single-asset API answers. Cached-only. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/screener | 0.03 USDC |
V1 Snapshot Cheapest entry point: the latest cached analyst signal for one asset — sentiment %, stance, divergence flag, narrative — with an age timestamp (?asset=BTC). Cached-only, no freshness guarantee: for a guaranteed-fresh read use /v1/consensus. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/snapshot | 0.02 USDC |
V1 Theme Deep-dive on a tracked market theme/narrative (?theme=ai-sentiment-divergence, altcoin-decoupling, macro-risk-off, regulatory-pressure, tradfi-adoption, or free text): is it strengthening or fading, which assets it moves, and the desk's read. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/theme | 0.09 USDC |
V1 Track Record Verifiable call log: every signal this desk has published, timestamped and countable (?asset=BTC optional). Audit us for a penny before you spend a dime — no accuracy claims, compute your own. Descriptive research, not financial advice. | /m/bz-vedetta-dethboy-com/v1/track-record | 0.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-vedetta-dethboy-com/v1/ask')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-vedetta-dethboy-com/v1/ask # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …