← Marketplace

X402financialdata

X402financialdata is an x402-native service at https://www.x402financialdata.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.

Base

Offers

OfferEndpointPrice
Analyst :Ticker
Analyst sentiment and short interest for a US stock in one call: recommendation trend, consensus price targets, recent upgrades/downgrades by firm, and short interest with month-over-month change -- rising short interest into price weakness is a classic bearish/squeeze-risk signal most analyst-ratings APIs don't include. From real Yahoo Finance data. $0.005/call.
/m/bz-www-x402financialdata-com/analyst/:ticker0.005 USDC
Crypto Leverage :Symbol
Crypto perpetual-futures leverage/squeeze-risk signal in one call: funding rate, open interest, and long/short account ratio, each with recent history and a rising/falling/flat trend -- how crowded and leveraged one side of the market has gotten, the derivatives analogue of stock short interest. Works for any OKX-listed perpetual (BTC, ETH, SOL, and more). From OKX. $0.01/call.
/m/bz-www-x402financialdata-com/crypto-leverage/:symbol0.01 USDC
Crypto Market Overview
Global crypto market snapshot in one call: total market cap, 24h trading volume, 24h market-cap % change, BTC/ETH dominance, and active-coin/market counts -- the whole-market context behind any single coin's move. Not ticker-specific. From CoinGecko. $0.005/call.
/m/bz-www-x402financialdata-com/crypto-market-overview0.005 USDC
Crypto Prices
Real crypto market data in one batched call: price, market cap, market-cap rank, 24h volume/high/low/change, circulating/total/max supply, and all-time-high with date -- for BTC, ETH, SOL, and 17+ other major coins by ticker. Richer than a plain price feed: most stock-data APIs' crypto tickers report null market cap. From CoinGecko. $0.005/call.
/m/bz-www-x402financialdata-com/crypto-prices0.005 USDC
Macro Calendar
FOMC meeting dates and major US economic release dates (CPI, non-farm payrolls, GDP, PCE, retail sales) in one call, each with a days-until countdown, between 'from' and 'to' -- the market-wide catalysts that move every ticker at once. FOMC dates from the Fed's official calendar; release dates live from FRED, and a temporarily-unavailable release is reported explicitly, not silently dropped. Not t
/m/bz-www-x402financialdata-com/macro-calendar0.01 USDC
News :Ticker
Latest news headlines and summaries for a stock ticker from real Yahoo Finance data. Includes article title, summary, publish date, publisher name, and URL — everything needed to monitor sentiment and catalysts. Supports optional limit parameter (default 10, max 50). $0.005/call.
/m/bz-www-x402financialdata-com/news/:ticker0.005 USDC
Prediction Market Series :Series Ticker
Every open market under one exact Kalshi series ticker (e.g. Fed rate decisions, recession odds) -- the reliable, exhaustive complement to /prediction-markets' best-effort keyword scan. Unlike keyword search, series_ticker is a genuine exact server-side filter. An empty result can mean an unknown series_ticker OR a real series with nothing open right now -- Kalshi's API returns the same response f
/m/bz-www-x402financialdata-com/prediction-market-series/:series_ticker0.01 USDC
Producer Prices
US Producer Price Index (PPI) in one call, live from FRED: headline Final Demand PPI and core PPI (ex food & energy), both YoY -- a leading inflation indicator that moves ahead of the consumer-side CPI/PCE already in /economic-indicators, since producer cost changes flow through to consumer prices with a lag. Not ticker-specific. $0.01/call.
/m/bz-www-x402financialdata-com/producer-prices0.01 USDC
Quote :Ticker
Real-time quote in one call: current price, intraday open/high/low, previous close with change and change %, volume metrics, 52-week high/low, and 50/200-day moving averages from real Yahoo Finance data. Works for stocks, forex pairs (e.g. EURUSD=X), and commodity futures (e.g. GC=F gold, CL=F oil), not just equities. $0.001/call.
/m/bz-www-x402financialdata-com/quote/:ticker0.001 USDC
Trending Markets
Top active prediction markets by 24h trading volume on Polymarket -- what's trending right now, no keyword needed. Pairs with /prediction-markets (keyword search) and /prediction-market (exact-ID lookup): use this one when you don't already know what to search for. Not ticker-specific. Supports optional limit (default 10, max 25). $0.01/call.
/m/bz-www-x402financialdata-com/trending-markets0.01 USDC
Volatility :Ticker
Realized (historical) volatility for a US stock across 10/20/30/60/90-day lookback windows -- annualized standard deviation of daily log returns from real Yahoo Finance closes, the backward-looking analogue of options implied volatility. $0.005/call.
/m/bz-www-x402financialdata-com/volatility/:ticker0.005 USDC
Yield Curve
US Treasury yield curve in one call: 1mo/3mo/6mo/1yr/2yr/5yr/10yr/30yr yields, the 10y-2y and 10y-3mo spreads, and a boolean inversion flag on each -- a classic recession/risk-off signal every macro trader watches. Live from FRED's daily constant-maturity Treasury series. Not ticker-specific. $0.01/call.
/m/bz-www-x402financialdata-com/yield-curve0.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-www-x402financialdata-com/analyst/:ticker')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

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