创建链接
- 仪表盘 → 支付链接 → 设置标题,选择代币和链。
- 设置固定金额,或留空让客户自行选择(捐赠、小费、随心付款)。
- 分享
https://pay.puffinmoney.com/link/<slug>—— 聊天、发票、邮件签名、 收据上的二维码,任何地方都可以。
编程方式调用
通过链接创建支付意图(公开端点,无需 API 密钥):/pay/<intentId>,或使用 iframe SDK 打开:
仅当链接没有固定金额时,请求中的金额才是必填项。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
分享一个网址即可收款——无需代码
https://pay.puffinmoney.com/link/<slug> —— 聊天、发票、邮件签名、
收据上的二维码,任何地方都可以。curl -X POST https://api.puffinmoney.com/v1/gateway/public/links/<slug>/intent \
-H "Content-Type: application/json" \
-d '{ "amount": "10.00", "customerEmail": "buyer@example.com" }'
{ "intentId": "9b1f…" }
/pay/<intentId>,或使用 iframe SDK 打开:
PuffinPay.openLink({ slug: 'consulting-invoice-x7k2m9', amount: '150.00' });