
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
node.cryptopia
Advanced tools
Node Cryptopia API - asynchronous node.js library for the Cryptopia API
A (unofficial) Node.js API client for the Cryptopia.
The client supports public (unauthenticated) calls to the Cryptopia. Private calls coming soon.
For private calls, the user secret is never exposed to other parts of the program or over the Web. The user key is sent as a header to the API, along with a signed request.
Repo home: github.com/sigwo/node-cryptopia
This Library was created by using parts of Adrian Soluch (@n0mad01) soluch.us [node.bittrex.api] (https://github.com/n0mad01/node.bittrex.api/blob/master/node.bittrex.api.js) MIT, open source. See LICENSE file.
git clone https://github.com/sigwo/node-cryptopia.git
cd node-cryptopia
npm install
In your app, require the module:
var Cryptopia = require('cryptopia');
If not installed via NPM, then provide the path to cryptopia.js
If only public API calls are needed, then no API key or secret is required:
var cryptopia = new Cryptopia();
All Cryptopia API methods are supported (with some name changes to avoid naming collisions). All methods require a callback function.
cryptopia.getcurrencies(function(data) {
console.log(data);
});
Response:
{ Success: true,
Message: null,
Data:
[ { Id: 2, Name: 'Dotcoin', Symbol: 'DOT', Algorithm: 'Scrypt' },
{ Id: 3, Name: 'Litecoin', Symbol: 'LTC', Algorithm: 'Scrypt' },
{ Id: 4, Name: 'Dogecoin', Symbol: 'DOGE', Algorithm: 'Scrypt' },
{ Id: 6, Name: 'Potcoin', Symbol: 'POT', Algorithm: 'Scrypt' },
{ Id: 9, Name: 'PopularCoin', Symbol: 'POP', Algorithm: 'Scrypt' },
{ Id: 11, Name: 'Reddcoin', Symbol: 'RDD', Algorithm: 'Scrypt' },
...
Error: null }
streamed from https://www.cryptopia.co.nz/api/GetCurrencies in: 0.587s
cryptopia.getmarket('100', function(data) {
console.log(data);
});
Response:
{ Success: true,
Message: null,
Data:
{ TradePairId: 100,
Label: 'DOT/BTC',
AskPrice: 2.0000000000000004e-7,
BidPrice: 1.8000000000000002e-7,
Low: 1.7000000000000004e-7,
High: 2.0000000000000004e-7,
Volume: 2710673.8817330003,
LastPrice: 1.8000000000000002e-7,
LastVolume: 200,
BuyVolume: 89786389.71749353,
SellVolume: 33485774.14500672,
Change: 0 },
Error: null }
streamed from https://www.cryptopia.co.nz/api/GetMarket/100 in: 0.631s
The callback is passed in a data object, the response from the API
For the most up-to-date API documentation, see cryptopia/api.
To use Cryptopia's trading API, your API key and secret must be provided:
var cryptopia = new Cryptopia('API_KEY', 'API_SECRET');
FAQs
Node Cryptopia API - asynchronous node.js library for the Cryptopia API
We found that node.cryptopia demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.