← Marketplace

Vibesprings

Vibesprings is an x402-native service at https://vibesprings.net, 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
Api Address Risk
On-chain address risk scoring and intelligence. Analyzes any Ethereum, Base, or Sepolia address across 6 security signals: balance profile, transaction history depth, contract detection, bytecode analysis (self-destruct patterns, delegate calls), proxy detection (EIP-1967), and known-risky address matching. Returns a 0-100 risk score, severity-ranked flags, and full profile data in a single call.
/m/bz-vibesprings-net/api/address-risk0.03 USDC
Api Crypto
Live cryptocurrency asset price tracker and market intelligence feed. Access real-time spot prices, daily percentage changes, 24-hour volume, total circulating supply, and historical records for top tokens. Supports custom coin listings, multi-currency quote pairs (USD, EUR, GBP, BTC, ETH), and complete global cryptocurrency market cap summaries.
/m/bz-vibesprings-net/api/crypto0.005 USDC
Exchange Convert
Fiat currency converter and international pricing calculator. Perform instant conversions for any base amount between 30+ fiat currencies with official real-time ECB rates. Returns the exact converted sum, forward exchange rate, and the inverse exchange rate for clear cross-currency financial auditing.
/m/bz-vibesprings-net/api/exchange/convert0.002 USDC
Api Gas
Real-time gas price oracle for multiple EVM chains. Returns slow/standard/fast fee estimates, estimated transaction costs (ETH transfers, ERC-20 transfers, swaps), and network congestion status. Supports Base, Ethereum, Arbitrum, and Optimism.
/m/bz-vibesprings-net/api/gas0.001 USDC
Infra Discover
Agent service discovery and search endpoint. Search and filter available x402 API endpoints by category, maximum query price, or keyword matches.
/m/bz-vibesprings-net/api/infra/discover0.02 USDC
Api Market Data
Live multi-asset price feed and market intelligence endpoint. Query real-time US Stock prices, cryptocurrency spot rates (USD pairs), and perpetual futures analytics (funding rates, open interest, leverage) in a single unified request. Ideal for AI portfolio managers, execution algorithms, and quantitative models.
/m/bz-vibesprings-net/api/market-data0.002 USDC
News Crypto
Real-time aggregated cryptocurrency news feed with lexicon-based sentiment analysis and cross-outlet story clustering. Filters by topic, time-range, and sentiment bands.
/m/bz-vibesprings-net/api/news/crypto0.008 USDC
Price Base Gas
Base network real-time gas price oracle. Returns block base fee, current gas price in GWEI, and network block details.
/m/bz-vibesprings-net/api/price/base-gas0.001 USDC
Price Btc Usd
Real-time BTC/USD price feed oracle. Retrieves live spot rate, 24h high/low, and volume directly from Coinbase Exchange.
/m/bz-vibesprings-net/api/price/btc-usd0.002 USDC
Price Eth Usd
Real-time ETH/USD price feed oracle. Retrieves live spot rate, 24h high/low, and volume directly from Coinbase Exchange.
/m/bz-vibesprings-net/api/price/eth-usd0.002 USDC
Price Sol Usd
Real-time SOL/USD price feed oracle. Retrieves live spot rate, 24h high/low, and volume directly from Coinbase Exchange.
/m/bz-vibesprings-net/api/price/sol-usd0.002 USDC
Api Weather
Historical weather and climate database. Access daily temperature highs, lows, total precipitation (rain/snow), wind speeds, and cloud conditions for any coordinates or city worldwide. Essential for geointelligence, climate modeling, historical records, and agricultural planning.
/m/bz-vibesprings-net/api/weather0.002 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-vibesprings-net/api/address-risk')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-vibesprings-net/api/address-risk
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …