{
"status" : "success",
"prices" : [
{
"market_hash_name" : "AK-47 | Aquamarine Revenge (Battle-Scarred)",
"price" : "7.46",
"created_at" : 1471214670
},
{
"market_hash_name" : "AK-47 | Aquamarine Revenge (Field-Tested)",
"price" : "166.07",
"created_at" : 1471102677
}
]
}
function get_price_by_market_hash(array $prices, string $market)
{
foreach ($prices as $price) {
if ($price['market_hash_name'] === $market) {
return (float) $price['price'];
}
}
return null;
}
var_dump(
get_price_by_market_hash(
$data['prices'],
'AK-47 | Aquamarine Revenge (Field-Tested)'
)
);
// float(166.07)