I have this JSON array, I got it from here. I want to extract from it some coins price. Here's what I want to have: BTC price: 15000$ XRP price: 3$ How can I achieve this in c# ?
[
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"rank": "1",
"price_usd": "15235.5",
"price_btc": "1.0",
"24h_volume_usd": "17910600000.0",
"market_cap_usd": "255647119350",
"available_supply": "16779700.0",
"total_supply": "16779700.0",
"max_supply": "21000000.0",
"percent_change_1h": "0.36",
"percent_change_24h": "8.91",
"percent_change_7d": "-3.41",
"last_updated": "1514994260"
},
{
"id": "ripple",
"name": "Ripple",
"symbol": "XRP",
"rank": "2",
"price_usd": "2.88573",
"price_btc": "0.00019146",
"24h_volume_usd": "4799670000.0",
"market_cap_usd": "111790712459",
"available_supply": "38739144847.0",
"total_supply": "99993093880.0",
"max_supply": "100000000000",
"percent_change_1h": "0.88",
"percent_change_24h": "19.54",
"percent_change_7d": "120.16",
"last_updated": "1514994241"
}
]