This endpoint is used to get quotations.
https://api.exchangecopter.com/apiQUOTES
GET
const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.exchangecopter.com/apiQUOTES',
params: {
documentId: documentId //string provided on the onboarding.
},
headers: { }
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
200 Response
{
"USDT_ARS": {
"bid": 1180.2,
"ask": 1221.7
}
}