Get Conversion History
Developing
To retrieve conversion history
Request Code Samples
curl --location --request GET 'https://dev-api.mce.sg/v1.0/trade/conversion/history?participantCode&startTime&endTime&offset&limit'
Responses
application/json {
"code": "string",
"msg": "string",
"data": {
"participantCode": "string",
"startTime": 0,
"endTime": 0,
"transactions": [
{
"conversionId": "string",
"quotationId": "string",
"participantCode": "string",
"clientReference": "string",
"sourceCurrency": "string",
"destinationCurrency": "string",
"price": 0,
"sourceAmount": 0,
"destinationAmount": 0,
"status": 1,
"createdAt": 0
}
],
"pagination": {
"limit": 0,
"offset": 0,
"total": 0,
"hasMore": true
}
}
}
Modified at 2025-11-21 05:46:47