← Marketplace
Robinhood Chain
Deck of Cards
A card-deck-as-a-service: shuffle decks, draw cards, and manage piles for any card game. Machine-payable per request.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Draw and reshuffle Append the deck id and action to the path, e.g. deck/{deck_id}/draw/?count=2 or deck/{deck_id}/shuffle/. | /m/deck-of-cards/deck | 0.005 USDG |
New shuffled deck Returns a deck_id to draw from. Pass ?deck_count=6 for a multi-deck shoe or ?jokers_enabled=true. | /m/deck-of-cards/new | 0.005 USDG |
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.
Sign in with your wallet to try an endpoint straight from the browser.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
// x402 exact scheme (permit2) on Robinhood Chain
// 1. GET the endpoint, read the payment-required header (base64 JSON)
// 2. Sign PermitWitnessTransferFrom against Permit2 for the advertised offer
// (spender = x402ExactPermit2Proxy, witness.to = merchant wallet)
// 3. Retry with the payment-signature header; settlement tx arrives
// in the payment-response header
const res = await fetch('https://api.meshgateway.co/m/deck-of-cards/deck', {
headers: { 'payment-signature': signedPaymentPayload },
})Or inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/deck-of-cards/deck # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …