← Marketplace
Base
Onrender
Onrender is an x402-native service at https://quotient-api-gateway.onrender.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. 6 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
V1 Markets Browse every prediction market Quotient tracks across Polymarket International, Polymarket US, Kalshi, and Limitless, with venue odds, available volume, resolution date, and forecast recency. Use this to discover covered event markets or exact linked oil, gold, silver, platinum, natural-gas, BTC, and ETH topics. Filter by venue or topic; the complete covered catalog returns in one response. | /m/bz-quotient-api-gateway-onrender-com/api/v1/markets | 0.005 USDC |
Markets Lookup Use this to fetch full Quotient intelligence for up to ten markets across Polymarket International, Polymarket US, Kalshi, and Limitless. Returns forecasts, theses, cited drivers, resolution pathways, venue odds, and quote provenance. Polymarket International and Kalshi fail closed when live pricing is unavailable. Prefer market_keys; legacy slugs and condition IDs default to Polymarket unless ven | /m/bz-quotient-api-gateway-onrender-com/api/v1/markets/lookup | 0.005 USDC |
Markets Search Use this endpoint to search Quotient-covered markets by meaning, taxonomy, asset, venue, or historical cutoff. Results carry current venue odds plus Q and venue odds captured at the selected forecast. Use as_of for point-in-time discovery and the forecast-time pair for historical spreads. Covers Polymarket International, Polymarket US, Kalshi, and Limitless, including since-closed markets in histo | /m/bz-quotient-api-gateway-onrender-com/api/v1/markets/search | 0.01 USDC |
V1 Portfolio Wallet-addressed positions across Polymarket, Polymarket perps, Limitless, and Hyperliquid, each prediction-market position joined to Quotient's forecast, signal, and position-side convergence assessment. Use this for wallet size, prices, PnL, and Q alignment. venues=all covers every venue; omitting venues keeps the legacy Polymarket-only shape. Kalshi and Polymarket US are absent only for lack of | /m/bz-quotient-api-gateway-onrender-com/api/v1/portfolio | 0.005 USDC |
V1 Signals Use this to scan Quotient's published prediction-market signals on Polymarket International, Polymarket US, Kalshi, and Limitless: side, entry YES price, latest Q probability and thesis, conviction, the forecast_status gauge with its standing adverse move, upside to Q, and capacity — one signal per market. A signal is active or retired; a missing live quote drops a row from the feed, and a caution | /m/bz-quotient-api-gateway-onrender-com/api/v1/signals | 0.01 USDC |
Signals Featured Use this when the user asks which prediction-market signal is currently designated as featured by Quotient. Returns its published side and lifecycle, forecast_status, entry and current fields, forecast context, capacity, and canonical market routing; it may be empty. The featured designation is a database field, not a recommendation. | /m/bz-quotient-api-gateway-onrender-com/api/v1/signals/featured | 0.005 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-quotient-api-gateway-onrender-com/api/v1/markets')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-quotient-api-gateway-onrender-com/api/v1/markets # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …