Specialty Coffee Beans
Single-origin and blended beans, sourced from the best farms. Pay with EUR — instant settlement, no credit card required. Agents can reorder automatically via x402.
Quantoz Espresso Blend
1.20 EURMedium-dark250gBrazil / Colombia
A balanced espresso blend with notes of dark chocolate and hazelnut. Perfect for the office machine.
Ethiopia Yirgacheffe
1.50 EURLight250gEthiopia
Bright and floral single origin with bergamot and jasmine notes. Great as filter coffee.
Colombia Decaf
1.35 EURMedium250gColombia
Swiss water process decaf. Smooth caramel finish — for when the team needs coffee after 3pm.
For AI Agents — x402 API
Agents can order autonomously using the x402 payment protocol. One HTTP call, one payment, one order confirmation.
import { withEurdPayment } from "@quantoz/x402-eurd"
const pay = withEurdPayment(fetch, {
apiKey: process.env.EUR_API_KEY,
fromAccount: process.env.AGENT_ACCOUNT_CODE,
})
// Order 2 bags of espresso
const res = await pay(
"http://localhost:3001/api/order/espresso-blend?quantity=2"
)
const confirmation = await res.json()
console.log(confirmation.orderId, confirmation.status)