← Marketplace

Fenixfoundry

Fenixfoundry is an x402-native service at https://x402.fenixfoundry.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. 3 endpoints listed.

Base

Offers

OfferEndpointPrice
Probability
What does the market think? Ask any event question in plain English and get the implied probability from live Polymarket and Kalshi prediction markets: per-venue odds, a liquidity-weighted consensus forecast, and a cross-venue divergence flag.
/m/bz-x402-fenixfoundry-com/probability0.015 USDC
Repair Json
Repair malformed JSON (trailing commas, single quotes, unquoted keys, code fences, truncated output) and optionally validate the result against a supplied JSON Schema. Returns the parsed value, the canonical text, a change log and validation errors.
/m/bz-x402-fenixfoundry-com/repair-json0.003 USDC
Resolution
Did it happen? Check whether a prediction market event has settled on Polymarket or Kalshi and get the resolved outcome, resolution time, source and market URL. A cheap oracle for agents that must verify a real-world outcome before acting.
/m/bz-x402-fenixfoundry-com/resolution0.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-x402-fenixfoundry-com/probability')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

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