Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"walletId": "WA1426785367490592",
"sellCcy": "EUR",
"buyCcy": "GBP",
"amount": 100,
"amountSide": "BUY"
}
Request samples
curl --location --request POST '/fx/quote' \
--header 'Content-Type: application/json' \
--data-raw '{
"walletId": "WA1426785367490592",
"sellCcy": "EUR",
"buyCcy": "GBP",
"amount": 100,
"amountSide": "BUY"
}'
Responses
application/json {
"id": "QT1625149268820000",
"sellCcy": "EUR",
"sellAmount": 100,
"buyCcy": "GBP",
"buyAmount": 110,
"fixedSide": "BUY",
"sellRate": 0.89343756,
"valueDate": "2024-07-15",
"createdTime": "2024-07-22 10:45:59",
"ttl": 60
}
Modified at 2024-07-19 02:18:03