Get Exchange Rate
Developing
Request
Body Params application/jsonRequired
{
"clientId":600002706,
"sellCurrency":"WUSD",
"buyCurrency":"USD"
}
Request Code Samples
curl --location --request POST 'https://openapi.dev.stablelink.app/trade/exchange-rate' \
--header 'Content-Type: application/json' \
--data-raw '{
"clientId":600002706,
"sellCurrency":"WUSD",
"buyCurrency":"USD"
}'
Responses
application/json {
"retcode": "200",
"retdata": {
"sellCurrency": "WUSD",
"buyCurrency": "USD",
"rateExpiryTime": "2026-03-03 10:23:55",
"rate": "0.9900",
"quoteId": "3082028699554140734",
"sellBalance": "0"
},
"success": true
}
Modified at 2026-03-03 02:24:27