summaryrefslogtreecommitdiffstats
path: root/btc/btcguild
diff options
context:
space:
mode:
authorroot <root@krebs>2011-06-29 21:06:26 +0200
committerroot <root@krebs>2011-06-29 21:06:26 +0200
commit01d6ff215f8a142960551cabaa084667ef482133 (patch)
tree817b8b090da2b3d3f8b127499347dd455885e887 /btc/btcguild
parente0b0b90df26b9190bb24ecee0a3ddb26f4156438 (diff)
parentfc1e4fcabd1e888089d2ea970ee6906735b84598 (diff)
Merge branch 'master' of github.com:/krebscode/painload
Diffstat (limited to 'btc/btcguild')
-rw-r--r--btc/btcguild/index.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/btc/btcguild/index.js b/btc/btcguild/index.js
new file mode 100644
index 00000000..1f33db06
--- /dev/null
+++ b/btc/btcguild/index.js
@@ -0,0 +1,20 @@
+api_key = process.env.api_key;
+
+var options = {
+ host: 'www.btcguild.com',
+ port: 80,
+ path: '/api.php?api_key=' + api_key
+};
+
+http = require('http');
+http.get(options, function(res) {
+ var data = '';
+ res.on('data', function (chunk) {
+ data += chunk;
+ });
+ res.on('end', function () {
+ console.log(JSON.parse(data));
+ });
+}).on('error', function(e) {
+ console.error('Error: ' + e.message);
+});