curl --location '/api/v3/payment-link/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"paymentLinkName": "Product Payment Link",
"paymentLinkDescription": "Payment link for product purchase",
"paymentLinkType": 1,
"paymentLinkSingle": {
"singleType": 1,
"singlePrice": 100,
"settlementCurrency": "USDT",
"receivingCurrencyList": [
"USDT"
],
"network": "Ethereum"
},
"paymentLinkSetting": {
"isPaymentFeeCoveredByPayer": "false"
}
}'{
"code": 200,
"message": "success",
"data": {
"paymentLinkUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"paymentLinkUrl": "https://example.com/shopping/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"paymentLinkAddress": "0x1234567890abcdef1234567890abcdef12345678",
"createTimeUtc": "2026-02-03 12:00:00"
}
}