diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 00000000..a37a94a1 Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..3c3629e6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/index.html b/index.html index 6767d9e4..bf35b88c 100644 --- a/index.html +++ b/index.html @@ -2708,6 +2708,52 @@
Response
+
+ + +
+ +

+ Bitcoin to ISK exchange rate

+

Source: myntkaup.is

+
+ + + get + /btc + +
+

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."
+    }
+  ]
+}
+
+ +
+
+
+