I want to get Bitcoin value for corresponding cop value and store it in table or variable. I got this URL from which I can get a Bitcoin value for usd amount. I searched on bitpay and I found this URL.
For example:
100.000 cop = 0,0248 btc
https://bitpay.com/downloads/bitpayApi.pdf
https://bitpay.com/api#resource-Rates
I tried:
var uri=
String.Format("https://bitpay.com/rates/COP",Convert.ToDecimal(textBox1.Text ));
WebClient client = new WebClient();
client.UseDefaultCredentials = true;
var data = client.DownloadString(uri);
var result = Convert.ToDouble(data);
textBox3.Text = data;
at the end, its COP value which we want to convert in Bitcoin. I want to get the result in the variable in C# (backend).
How can I accomplish this?
First, you need to understand how the API responds to you. It responds with JSON that is always prefixed with data: {}. You can use Newtonsoft.Json and the JObject.Parse() method to find the data token and select its properties. You can then deserialize that with Newtonsoft.Json into a class that models the rates. A rate has code, name, and rate properties.
Let's declare our class:
Now we need to call the API correctly to get a response. I did so in a little console app as follows:
And of course, if all we care about is the rate and we do not care about presenting any of the other data such as name or code, then we could omit creating a class to house the other data and simply select that token itself: