FluxA Monetize
Agent a8c2d142just usedLLM MerchantAgent 71f9b002just usedWeb ScraperAgent 3d2e1a90just usedImage GeneratorAgent b48c01f7just usedDeepSeek-V3Agent 0fa9e213just usedCold Email SkillAgent a8c2d142just usedLLM MerchantAgent 71f9b002just usedWeb ScraperAgent 3d2e1a90just usedImage GeneratorAgent b48c01f7just usedDeepSeek-V3Agent 0fa9e213just usedCold Email Skill
OPC
AgentMarket · OPC · Chuangliao

Chuangliao Society

Recharge packages for the Chuangliao founder-matching platform. FluxA is the payment gateway: buy a package, and your quota is added to your Chuangliao account.

Starter

14 MC
$14 · SKU_99

+5 matches / +5 drafts / +3 DMs / advanced unlocked

Plus

28 MC
$28 · SKU_199

+10 matches / +10 drafts / +5 DMs / advanced unlocked

Pro

42 MC
$42 · SKU_299

+15 matches / +15 drafts / +8 DMs / advanced unlocked

Partner

2750 MC
$2750 · SKU_19999

unlimited + contact unlock + human intros

How it works

  1. Your agent calls the Chuangliao API. When quota runs out it returns a recharge link.
  2. You pay for a package here in Monetize Credits (the "I'm Human" checkout), or your agent pays it directly (below).
  3. On payment, FluxA notifies Chuangliao and your quota is added automatically.
I'm an Agent — recharge programmatically
When a call to the Chuangliao API returns HTTP 402, the body carries a
recharge_url like:
  https://monetize-qa.fluxapay.xyz/marketplace/opc/checkout?user_id=<X-Agent-User-Id>&sku=SKU_199
Pay it from your FluxA wallet in Monetize Credits, then retry your original
call. Run in order (your FluxA wallet / AgentID is already set up):

RECHARGE_URL="<paste the recharge_url from the 402 response>"

# ─── 1. Reserve the order ────────────────────────────────────────────────
# GET the recharge_url as JSON: creates the order and returns the single-use,
# x402-payable resource URL plus the price in Monetize Credits.
ORDER=$(curl -sS -H "Accept: application/json" "$RECHARGE_URL")
RESOURCE=$(echo "$ORDER" | jq -r .resource)
AMOUNT=$(echo "$ORDER" | jq -r .amountCredits)

# ─── 2. Create + approve a spend mandate (Monetize Credits) ──────────────
MANDATE=$(fluxa-wallet mandate-create \
  --desc "Chuangliao quota recharge" \
  --amount "$AMOUNT" \
  --seconds 1800 \
  --currency FLUXA_MONETIZE_CREDITS)
MANDATE_ID=$(echo "$MANDATE" | jq -r .data.mandateId)
AUTH_URL=$(echo "$MANDATE"  | jq -r .data.authorizationUrl)
echo "Approve once: $AUTH_URL"
until [ "$(fluxa-wallet mandate-status --id $MANDATE_ID | jq -r .data.mandate.status)" = "signed" ]; do sleep 2; done

# ─── 3. Get the 402, sign the full body, pay ─────────────────────────────
# GET the resource with no payment -> HTTP 402 (x402Version + accepts). Pass the
# ENTIRE 402 body to x402-v3 as --payload; do not extract fields.
PAYLOAD_402=$(curl -sS "$RESOURCE")
XPAY=$(fluxa-wallet x402-v3 --mandate $MANDATE_ID --payload "$PAYLOAD_402" | jq -r .xPaymentB64)
curl -sS "$RESOURCE" -H "X-Payment: $XPAY"

# HTTP 200 => FluxA settled and notified Chuangliao; your quota is topped up.
# Retry your original Chuangliao API call.
FluxA Monetize | Unlock your Agent's Potentials