Emerge Digital · Agent Commerce
Live x402 demo

An agent pays $0.10 to resolve a customer escalation.

This is a real HTTP endpoint gated by the x402 protocol. Autonomous agents can pay in USDC on Base and receive a machine-readable response — no accounts, no API keys, no prior relationship. Emerge Digital builds this layer for Gulf enterprises on Cloudflare.

1 — Call it without paying

Any un-paid request receives an HTTP 402 with payment terms an agent can read.

curl -i https://agent-commerce.emergedigital.com/api/resolve-escalation

Response: HTTP/1.1 402 Payment Required + JSON body with the accepted price, network, and receiving address. This is the machine-readable payment offer.

2 — Call it with payment

An agent using the @x402/fetch SDK signs and pays automatically. On Base Sepolia testnet, funds are free — request test USDC from Circle's faucet.

import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
// ...register EVM scheme with a test signer
const paidFetch = wrapFetchWithPayment(fetch, client);
const res = await paidFetch(
  "https://agent-commerce.emergedigital.com/api/resolve-escalation"
);
const data = await res.json();
// { ok: true, escalation: { id, resolution_summary, ... }, meta: {...} }

Why this matters

Cloudflare launched the Monetization Gateway on 1 July 2026 to charge autonomous agents for any resource behind Cloudflare — web pages, datasets, APIs, or MCP tools. Coinbase and Cloudflare co-founded the x402 Foundation. The protocol is real, the volume is real (over 165M transactions to April 2026), and Gulf enterprises procuring Agentforce and Copilot programmes this year will need this layer.

Emerge Digital is the local Cloudflare-native prime that builds it — no wallet infrastructure to run, no on-chain code your compliance team has to reason about.

Book an Agent Commerce Discovery →
Status. This endpoint runs in demo-mode until the production receiving wallet address is configured. In demo-mode /api/resolve-escalation returns HTTP 503 with a status payload — the code path, contract, and hosting infrastructure are already the real production shape.