curl --request GET \
--url https://openplatform.gateapi.io/v1/pay/address/currencies \
--header 'X-GatePay-Certificate-ClientId: <x-gatepay-certificate-clientid>' \
--header 'X-GatePay-Nonce: <x-gatepay-nonce>' \
--header 'X-GatePay-Signature: <x-gatepay-signature>' \
--header 'X-GatePay-Timestamp: <x-gatepay-timestamp>'{
"code": "000000",
"data": {
"currencies": [
"USD",
"USDT",
"BTC",
"ETH",
"EOS",
"LTC",
"BCH",
"XRP",
"ZEC",
"ADA",
"GT",
"BNB",
"DOGE",
"DOT",
"SHIB",
"UNI",
"FIL",
"STEPG",
"SUPE",
"LION",
"FROG",
"WMHH"
]
},
"errorMessage": "",
"status": "SUCCESS"
}Query the list of all currencies supported for Gate address payment
curl --request GET \
--url https://openplatform.gateapi.io/v1/pay/address/currencies \
--header 'X-GatePay-Certificate-ClientId: <x-gatepay-certificate-clientid>' \
--header 'X-GatePay-Nonce: <x-gatepay-nonce>' \
--header 'X-GatePay-Signature: <x-gatepay-signature>' \
--header 'X-GatePay-Timestamp: <x-gatepay-timestamp>'{
"code": "000000",
"data": {
"currencies": [
"USD",
"USDT",
"BTC",
"ETH",
"EOS",
"LTC",
"BCH",
"XRP",
"ZEC",
"ADA",
"GT",
"BNB",
"DOGE",
"DOT",
"SHIB",
"UNI",
"FIL",
"STEPG",
"SUPE",
"LION",
"FROG",
"WMHH"
]
},
"errorMessage": "",
"status": "SUCCESS"
}Merchant client ID, obtained from GatePay platform
HMAC-SHA256 signature for request validation
Timestamp in milliseconds, must not differ from server time by more than 5 minutes
Random nonce for replay attack prevention