Hey, I am currently using "
https://api.bitfinex.com/v1/pubticker/IOTBTC" to get the ticker info for IOTBTC. I am also using the same command to get Ticker info for many of the other coin pairs.
I'm using php to request the data, but because I want info on many coins I end up sending many requests to the site, and get this error "Too Many Requests" if I run my script more than once every 17 seconds.
My Question:
Is there a way, in php, to get the ticker info for every trade pair with one request sent to the website?
my code looks like this right now
$getIOTBTC = json_decode(file_get_contents("
https://api.bitfinex.com/v1/pubticker/IOTBTC"), true);
$bidIOTBTC = $getIOTBTC['bid'];
$askIOTBTC = $getIOTBTC['ask'];
or if there are any other solutions to my problem, please share
Thanks