← Marketplace

X402-factory

X402-factory is an x402-native service at https://x402-factory.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.

Base

Offers

OfferEndpointPrice
Board Fed
All active Federal Reserve markets with live probabilities in one call — One-call board of the most active Federal Reserve prediction markets: top markets by volume with blended live probabilities, resolution dates, and per-market slugs for drill-down. The bulk read for agents tracking the state of Federal Reserve at a glance.
/m/bz-x402-factory-com/v1/board/fed0.03 USDC
Calendar Sports Nfl
Upcoming NFL football event resolutions — Upcoming NFL football market resolutions in date order with current blended probabilities — the forward calendar of NFL football events an agent can position around. Same shape as /v1/calendar, pre-filtered to NFL football markets.
/m/bz-x402-factory-com/v1/calendar/sports-nfl0.01 USDC
Evergreen Fed Next Meeting Hike
Live probability: Will the Fed hike rates at its next FOMC meeting? — Stable evergreen URL for a recurring question: Will the Fed hike rates at its next FOMC meeting? Auto-resolves to the current market instance and rolls forward on resolution, so the answer is always about the next occurrence. Response adds current_slug and rolls_to_next_at to the standard probability shape.
/m/bz-x402-factory-com/v1/evergreen/fed-next-meeting-hike0.02 USDC
Evergreen Nba Finals Winner
Live probability: Who wins the next NBA Finals? — Stable evergreen URL for a recurring question: Who wins the next NBA Finals? Auto-resolves to the current market instance and rolls forward on resolution, so the answer is always about the next occurrence. Response adds current_slug and rolls_to_next_at to the standard probability shape.
/m/bz-x402-factory-com/v1/evergreen/nba-finals-winner0.02 USDC
Evergreen Presidential Election Winner Party
Live probability: Which party wins the next US presidential election? — Stable evergreen URL for a recurring question: Which party wins the next US presidential election? Auto-resolves to the current market instance and rolls forward on resolution, so the answer is always about the next occurrence. Response adds current_slug and rolls_to_next_at to the standard probability shape.
/m/bz-x402-factory-com/v1/evergreen/presidential-election-winner-party0.02 USDC
V1 Ping
Cheapest endpoint: liveness plus x402 payment pipeline check — Returns ok with the server time and whether this call was paid. Use it to verify your x402 client end to end before spending on data endpoints.
/m/bz-x402-factory-com/v1/ping0.001 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-x402-factory-com/v1/board/fed')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-x402-factory-com/v1/board/fed
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …