GET /v2/odata/FxRates
Return
This endpoint provides up-to-date exchange rates for different currency pairs. You can use it to obtain exchange rates used in transactions and currency conversion.
Endpoint URL
https://api.wealthtechs.com/v2/odata/FxRates
Authorization
// Authorization via JWT Token.
Authorization: Bearer <YourToken>Learn how to get access to our API V2.0 by clicking here.
You canΒ copyΒ andΒ useΒ ourΒ API v2.0 Public TokenΒ to get familiar with ourΒ API OData Resources.
Responses
| Code | Type |
|---|---|
| 200 | Success |
| 204 | No Content |
| 400 | Bad Request |
| 401 | Unauthorized |
Example Code
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVc2VySW5mbyI6IntcIklkXCI6OTgxLFwiSWRlbnRpdHlJZFwiOlwiNjMyMzhhZTQtMzAyMC00NWI5LWEwODktOTE2ZTY4MDMyZTY3XCIsXCJVc2VyTmFtZVwiOlwiMF9URVNUX0NMSUVOVFwiLFwiRW1haWxcIjpcInRlc3RjbGllbnRAd2VhbHRodGVjaHMuY29tXCIsXCJGaXJzdE5hbWVcIjpcIlRlc3RcIixcIkxhc3ROYW1lXCI6XCJDbGllbnRcIixcIklzQ2xpZW50VXNlclwiOmZhbHNlfSIsIm5iZiI6MTY5NDcwMjU3OSwiZXhwIjoxOTI0OTIzNjAwLCJpc3MiOiJXZWFsdGhUZWNocyIsImF1ZCI6IkFQSVVzZXJzIn0.bNcP0ouNwtFoxrI7pYXw0WKiw0TN6w_R2-Ban5moo1A");
var requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch("https://api.wealthtechs.com/v2/odata/FxRates?$top=5", requestOptions)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));Example Response
{
"@odata.context": "https://api.wealthtechs.com/v2/odata/$metadata#FxRates",
"value": [
{
"CustodianId": 73,
"ProcessDate": "2023-09-04T00:00:00-04:00",
"BaseCurrencyId": 24,
"LocalCurrencyId": 40,
"Factor": 1.4674
},
{
"CustodianId": 73,
"ProcessDate": "2023-09-05T00:00:00-04:00",
"BaseCurrencyId": 24,
"LocalCurrencyId": 40,
"Factor": 1.4627
},
{
"CustodianId": 73,
"ProcessDate": "2023-09-06T00:00:00-04:00",
"BaseCurrencyId": 24,
"LocalCurrencyId": 40,
"Factor": 1.4626
},
{
"CustodianId": 73,
"ProcessDate": "2023-09-07T00:00:00-04:00",
"BaseCurrencyId": 24,
"LocalCurrencyId": 40,
"Factor": 1.4639
},
{
"CustodianId": 73,
"ProcessDate": "2023-09-08T00:00:00-04:00",
"BaseCurrencyId": 24,
"LocalCurrencyId": 40,
"Factor": 1.4595
}
]
}