UNPKG

insight-bitcore-api

Version:

An open-source bitcoin blockchain API. The Insight API provides you with a convenient, powerful and simple way to query and broadcast data on the bitcoin network and build your own services with it.

12 lines (9 loc) 232 B
var _ = require('lodash'); module.exports.id = 'Bitstamp'; module.exports.url = 'https://www.bitstamp.net/api/ticker/'; module.exports.parseFn = function(raw) { return [{ code: 'USD', rate: parseFloat(raw.last) }]; };