LimePay is the programmable payments layer for Robinhood Chain — powering payment links, invoices, QR checkout, merchant dashboards, and smart spending vaults for humans and AI agents.
Payment links, invoices, and vault operations exposed as clean primitives. Webhook events for every state change. Agent-friendly, x402-ready.
// Create a payment link
const link = await limepay.links.create({
title: "Coffee",
amount: "5.00",
token: "USDG",
chain: "robinhood",
});
// Listen for paid events
limepay.on("payment.succeeded", (evt) => {
fulfill(evt.reference);
});No. LimePay is non-custodial. Funds settle directly to your payout address on Robinhood Chain.
USDG is the global-dollar stablecoin used as LimePay's default settlement asset.
Yes — payers can pay with any supported token; you settle in USDG automatically.
No. LimePay ships the primitives — links, invoices, vaults — as ready-to-use payment rails.
Yes. Vaults give agents a spending profile with hard limits, allowlists, and daily budgets.