Doğrudan erişmek yerine foreach ile dönüp if ile kontrol etmen daha sağlıklı olacaktır.


$contents = file_get_contents('https://api.coinlore.net/api/tickers/');

$jsonContent = json_decode($contents);

foreach ($jsonContent->data as $key => $value) {
if ($value->nameid == 'zcash'){
print_r($value);
}
}