+ Bitcoin to ISK exchange rate
+ Source: myntkaup.is
+ +
+
+
+ Current Bitcoin to ISK exchange rate.
+jQuery demo
+$.ajax({
+ 'url': 'http://apis.is/btc',
+ 'type': 'GET',
+ 'dataType': 'json',
+ 'success': function(response) {
+ console.log(response);
+ }
+});
+
+ Response
+
+{
+ "results": [
+ {
+ "id": "bitcoin",
+ "symbol": "BTC",
+ "currencySymbol": "₿",
+ "rateUsd": 3878.990012322519,
+ "rateIsk": 458225.2181623272,
+ "rateIskFriendly": "458.225kr."
+ }
+ ]
+}
+