了解 on-ramps 和 off-ramps
获取报价
创建 Ramp
支付/存款
转换
结算
需要报价
30 秒过期
状态跟踪
Webhook 通知
// 1. 获取报价 const quote = await createQuotation({ fromCurrency: 'COP', toCurrency: 'USDC', amount: 100000, amountIsToCurrency: false, cashInMethod: 'PSE', cashOutMethod: 'POLYGON' }); // 2. 创建 ramp const ramp = await createRamp({ quotationId: quote.id, userId: 'user-id', accountId: 'wallet-id' }); // 3. 用户通过提供的 URL 支付 window.location.href = ramp.paymentInfo[0].url;