Questions tagged [fixer.io]

29 questions
0
votes
1 answer

The maximum allowed API amount of monthly API requests has been reached

I am using exchanger api (florianv/laravel-swap) for foreign currency exchange rates in my laravel Project. my composer.json snipped for relevance : "require": { "php": "^7.1.3", "florianv/laravel-swap": "^1.3", }, While the api is giving…
Sijan Bhattarai
  • 570
  • 2
  • 6
  • 25
0
votes
1 answer

calling a fixer API in plsql to get currency rate

I have a Fixer.io API to get Current currency rate , i want to get the currency rate in PLSQL. Before this i have tried in Php to get the rate . Now i want to call the same in PLSQL to get the current rate. What i have tried in plsql declare req …
user10266688
  • 37
  • 3
  • 12
0
votes
2 answers

Filter json result with datetime - exclude weekends - Python

Consider this code: def getHistoricRates(): rates = [] response = urlopen('http://data.fixer.io/api/1999-01-01?access_key=my_key') data = response.read() rdata = json.loads(data.decode(), parse_float=float) rates_from_rdata = rdata.get('rates',…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
0
votes
1 answer

jshint javascript error - Expected ')' to match '{' from line n and instead saw 'response'. (E020)

I am following the SPA tutorial at Build a JavaScript Single Page App Without a Framework I have the below code in my server.js file, and it is giving an error: const get = async (url) => { const response = await api.get(url); const { data } =…
Our Man in Bananas
  • 5,809
  • 21
  • 91
  • 148
0
votes
2 answers

KeyError: 'rates' - Json from fixer.io - Python

I have this code: def getExchangeRates(): rates = [] response = urlopen('my_key') data = response.read() rdata = json.loads(data.decode(), parse_float=float) rates.append( rdata['rates']['USD'] ) rates.append(…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
0
votes
2 answers

KeyError ['date'] - Python fixer.io

I'm starting over with fixerio, I have this code: import requests import json url = "http://api.fixer.io/latest?base=USD" response = requests.get(url) data = response.text parsed = json.loads(data) date = parsed["date"] print("Date:", date,…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
0
votes
1 answer

Get historical data from fixer.io except for weekends

Consider the code below, which uses the historical_rates(today) function. I want to take rates for all days except weekends, is there some example on how to accomplish this? import datetime from fixerio import Fixerio today =…
NeoVe
  • 3,857
  • 8
  • 54
  • 134
0
votes
1 answer

The "access_key" option must be provided to use fixer.io

For the currency conversion i am using "florianv/laravel-swap": "^1.1" library. Florianv/Laravel-swap. As Fixer.io has changed its implementation, it is necessary to pass the access_key with the request, and because of that i am getting this error:…
Mukesh Joshi
  • 2,784
  • 4
  • 24
  • 34
0
votes
1 answer

How to parse fixer.io json output into excel (for dummies)

I use FIXER.IO popular API in a VBA to get exchange rates into some cells of my worksheet named USD, CNY, INR etc. Fixer.io API was returning a text format giving the rates I needed. As of March 6th 2018, the legacy Fixer API (api.fixer.io) was…
Marco
  • 1
0
votes
1 answer

Parse HTTP response from fixer.io in node.js

I am trying to do a http request to fixer.io to request some exchange rate data. This is the code I am using: var url = "http://data.fixer.io/api/latest?access_key=" + API + "&base=" + Currency + "&symbols=" + RequestCurrencies; var request =…
Alexander Ko
  • 195
  • 18
0
votes
1 answer

VB - Newtonsoft.Json Currency Program Unexpected character "{." error

I am trying to build a api-based online currency program for School Project. I did it but I am trying to build a more functional program so I decided to add a second windows form to my program. This second form does currency exchange in past time.…
ubt
  • 1
0
votes
1 answer

Why api.fixer.io doesn't showing list of all currencies?

I'm trying to access this API https://api.fixer.io/latest?base=USD but I have noticed that, it showing only 31 countries currency and I want all. I googled it but doesn't getting any answer for this API. Below is the response…
Sunil Targe
  • 7,251
  • 5
  • 49
  • 80
-2
votes
1 answer

Currency API_key doesn't work in flutter App

Here is the my code : Here is my result : What's the actual code for access API ?
Abir Ahsan
  • 2,649
  • 29
  • 51
-3
votes
1 answer

Why does JSON not accept item from array?

I wanna request the exchange rates from an API for every currency by using an array filled with the available currencies. My JavaScript Code: var requestURL = 'https://api.fixer.io/latest'; var requestUrlstandard =…
Lucas
  • 104
  • 1
  • 12
1
2