Create Quotation
Designing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/json
{
"participantCode": "string",
"clientReference": "string",
"sourceCurrency": "string",
"destinationCurrency": "string",
"sourceAmount": 0,
"destinationAmount": 0
}
Request Code Samples
curl --location --request POST 'https://dev-api.mce.sg/v1.0/trade/quotation' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"participantCode": "string",
"clientReference": "string",
"sourceCurrency": "string",
"destinationCurrency": "string",
"sourceAmount": 0,
"destinationAmount": 0
}'
Responses
application/json {
"participantCode": "B0100007",
"quoteId": "1098827",
"tradingPair": "USDT/USD",
"direction": 1,
"price": 1.005,
"quantity": 10000,
"totalValue": 10050,
"expiredAt": "2024-09-25T09:06:29.000+00:00",
"settleDate": "2024-09-26T09:06:29.000+00:00"
}
Modified at 2025-11-21 05:46:47