← Marketplace

Coinopai

Coinopai is an x402-native service at https://imagegen.coinopai.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. 2 endpoints listed.

Base

Offers

OfferEndpointPrice
Generate
Generate an AI image from a text prompt via FLUX Schnell — fast text-to-image for drafts, mockups, concept art, marketing images, and social graphics. Built for agents and automated content pipelines: pass a prompt and aspect ratio (1:1, 16:9, 9:16, 4:3), get back a hosted image URL. Create AI art via API — pay-per-call via x402 USDC on Base, no API key, no signup, no rate-limited free tier.
/m/bz-imagegen-coinopai-com/generate0.25 USDC
Generate Hd
Start a high-resolution AI image job from a text prompt, using FLUX 1.1 Pro plus a 4x Real-ESRGAN upscale. The paid response returns HTTP 202 with a job_id and a free status_url to poll until the image succeeds or fails, preventing long generation from being lost to an HTTP proxy timeout.
/m/bz-imagegen-coinopai-com/generate/hd0.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-imagegen-coinopai-com/generate')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

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