
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@cryptapi/api
Advanced tools
NodeJS's implementation of CryptAPI's payment gateway
npm install @cryptapi/api
const CryptAPI = require('@cryptapi/api')
const ca = new CryptAPI(coin, myAddress, callbackUrl, params, cryptapiParams)
const address = await ca.getAddress()
Where:
coin is the coin you wish to use, from CryptAPI's supported currencies (e.g 'btc', 'eth', 'erc20_usdt', ...).myAddress is your own crypto address, where your funds will be sent to.callbackUrl is the URL that will be called upon payment.params is any parameter you wish to send to identify the payment, such as {orderId: 1234}.cryptapiParams parameters that will be passed to CryptAPI _(check which extra parameters are available here: https://docs.cryptapi.io/#operation/create).address is the newly generated address, that you will show your users in order to receive payments.Once your customer makes a payment, CryptAPI will send a callback to your
callbackUrl. This callback information is by default inGETbut you can se it toPOSTby settingpost: 1incryptapiParams. The parameters sent by CryptAPI in this callback can be consulted here: https://docs.cryptapi.io/#operation/confirmedcallbackget
const ca = new CryptAPI(coin, myAddress, callbackUrl, params, cryptapiParams)
const data = await ca.checkLogs()
Same parameters as before, the
datareturned can b e checked here: https://docs.cryptapi.io/#operation/logs
const ca = new CryptAPI(coin, myAddress, callbackUrl, params, cryptapiParams)
const address = await ca.getAddress()
// ...
const qrCode = await ca.getQrcode(value, size)
For object creation, same parameters as before. You must first call ``getAddress` as this method requires the payment address to have been created.
For QR Code generation:
value is the value requested to the user in the coin to which the request was done. Optional, can be empty if you don't wish to add the value to the QR Code.size Size of the QR Code image in pixels. Optional, leave empty to use the default size of 512.Response is an object with
qr_code(base64 encoded image data) andpayment_uri(the value encoded in the QR), see https://docs.cryptapi.io/#operation/qrcode for more information.
const fees = await CryptAPI.getEstimate(coin, addresses, priority)
Where:
coin is the coin you wish to check, from CryptAPI's supported currencies (e.g 'btc', 'eth', 'erc20_usdt', ...)addresses The number of addresses to forward the funds to. Optional, defaults to 1.priority Confirmation priority, (check this article to learn more about it). Optional, defaults to default.Response is an object with
estimated_costandestimated_cost_usd, see https://docs.cryptapi.io/#operation/estimate for more information.
const conversion = await CryptAPI.getConvert(coin, value, from)
Where:
coin the target currency to convert to, from CryptAPI's supported currencies (e.g 'btc', 'eth', 'erc20_usdt', ...)value value to convert in from.from currency to convert from, FIAT or crypto.Response is an object with
value_coinandexchange_rate, see https://docs.cryptapi.io/#operation/convert for more information.
const supportedCoins = await CryptAPI.getSupportedCoins()
Response is an array with all support coins.
Need help?
Contact us @ https://cryptapi.io/contacts/
FAQs
CryptAPI's Library for NodeJS
The npm package @cryptapi/api receives a total of 167 weekly downloads. As such, @cryptapi/api popularity was classified as not popular.
We found that @cryptapi/api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.