This worked perfect for all Currencies. I can output all data with '0','1','2',...
$url = 'https://bittrex.com/api/v1.1/public/getmarketsummaries
$response = file_get_contents($url);
$obj = json_decode($response,true);
$marketname = $obj['result'][0]['MarketName'] . '';
And this url is for a single currency with the 'market' string.
https://bittrex.com/api/v1.1/public/getmarketsummary?market=btc-neo
But how can i read this?
$url = 'https://bittrex.com/api/v1.1/public/getmarketsummaries?market=btc-neo
$response = file_get_contents($url);
$obj = json_decode($response,true);
$marketname = $obj['result'][0]['MarketName'] . '';
doesn't work!
Any idea?
'around$urlin both your code :- 1:- prntscr.com/h7xc3i and 2:- prnt.sc/h7xbkgmarketparameter