-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing exchange rate for certain days #217
Comments
i was using the timeseries endpoint to get many quotes at a time. i do find that i have some of the data in the historial rate endpoint |
the following calls have UYU -> USD but not USD -> UYU which is interesting var requestURL = 'https://api.exchangerate.host/2019-09-11?base=USD'; request.onload = function() { var requestURL = 'https://api.exchangerate.host/2019-09-11?base=UYU'; request.onload = function() { |
so the reason why the base UYU seems to have data is because it in fact returns with a base EUR instead of erroring out |
on this particular call which is a time series var requestURL = 'https://api.exchangerate.host/timeseries?start_date=2019-09-11&end_date=2019-09-11&base=UYU'; request.onload = function() { the api returns saying the base is UYU, but then the data for that day is in fact in EUR. |
we are testing to see if we can use this service. we ran into the following USD->UYU being missing for the following dates.
09-11-2019 -> 10-07-2019. i tried clearing the cache with the v=2019-09-11 and i also tried different sources but most failed except for the default.
any reason why this might be?
The text was updated successfully, but these errors were encountered: