← Marketplace

Aproxpay

Aproxpay is an x402-native service at https://proxy.aproxpay.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. 4 endpoints listed.

Base

Offers

OfferEndpointPrice
V1 Proxy
Residential proxy fetch (up to 2MB). Returns HTTP 200 with the target body; read X-Target-Status for the origin status. Billed for the forwarded request, not for a 2xx origin response. For larger responses use /v1/proxy/large; at >17 requests a session pass is cheaper.
/m/bz-proxy-aproxpay-com/v1/proxy0.003 USDC
V1 Session
Entry session pass: ephemeral CONNECT credentials (30 min + 15MB). Upsell: /v1/session/heavy or /v1/session/gb.
/m/bz-proxy-aproxpay-com/v1/session0.05 USDC
Session Gb
GB session pass: dedicated sub-user CONNECT credentials (up to 120 min + 1GB). Sticky IP may rotate after 120 min.
/m/bz-proxy-aproxpay-com/v1/session/gb2.5 USDC
Session Heavy
Heavy session pass: ephemeral CONNECT credentials (60 min + 200MB). For sustained volume use /v1/session/gb.
/m/bz-proxy-aproxpay-com/v1/session/heavy0.5 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-proxy-aproxpay-com/v1/proxy')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

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