Skip to main content
An AI agent buys one “Coldplay World Tour - Floor Standing GA” ticket ($120.00), paying in FDUSD on BSC. Each step shows what the agent sends, what the merchant does behind the scenes, and what Prism returns.

1. Discovery

The agent checks the merchant’s UCP profile. The merchant fetches the current handler definition from Prism and returns it. Agent → Merchant
Merchant → Prism (background)
Agent receives:
The agent confirms xyz.fd.prism_payment is present and proceeds to checkout.

2. Checkout Session

The agent sends their cart. The merchant calls Prism to get x402 payment requirements and returns them in the session. Agent → Merchant
Merchant → Prism (background)
Agent receives:
The agent extracts config and passes it to the wallet.

3. Payment Authorization

The agent’s wallet receives the config as paymentRequirements. No HTTP request goes out at this step — everything happens locally inside the TEE.
The private key never leaves the enclave. Only the signed authorization exits.

4. Complete Checkout

The agent submits the signed wallet output verbatim as the credential. Agent → Merchant
Merchant → Prism (background)
Prism executes the ERC-3009 transferWithAuthorization on BSC, verifies the transfer, and returns:
Agent receives:
The ticket is reserved. 120 FDUSD has settled on-chain to the merchant’s wallet.

Testing

Use the production Prism gateway (https://prism-gw.fd.xyz) with your own account and small amounts to validate the full flow end-to-end against real on-chain settlement.

Merchant Guide

Step-by-step implementation for the merchant server

Agent Guide

Step-by-step implementation for the agent platform
Last modified on July 10, 2026