API for wallet generation and making transactions

Hi,
As we are making exchange , even we have almost made it and we have added many of the coins like BTC,ETH,BCH,LTC,XRP and some of the ERC20 TOKENS, our aim is for top 100 coins , we want to list cardano too, Is it possible for getting your API for wallet generation and transactions.Kindly help me out

Thanks

Wallet API: https://cardanodocs.com/technical/wallet/api/v1

Explorer API: https://cardanodocs.com/technical/explorer/api/

1 Like

@vantuz-subhuman can you please help me , how to use these api in javascript , any leads would be appreciated.
Thanks In Advance

$ npm install najax
$ node
> let najax = require('najax');
> najax('http://cardanoexplorer.com/api/blocks/pages', function(data) {
...  let resp = JSON.parse(data);
...  let block = resp.Right[1][0];
...  console.log('Latest Cardano block: %j', block);
...});
Latest Cardano block: {
  "cbeEpoch":52,
  "cbeSlot":15575,
  "cbeBlkHash":"04a6b54545b57c1a1605a26e1f7c5cb86070df67b7cf54717e733b4bc7441865",
  "cbeTimeIssued":1528978591,
  "cbeTxNum":0,
  "cbeTotalSent":{"getCoin":"0"},
  "cbeSize":634,
  "cbeBlockLead":"6c9e14978b9d6629b8703f4f25e9df6ed4814b930b8403b0d45350ea",
  "cbeFees":{"getCoin":"0"}
}
>

Thanks a lot.
Can you help me for creating new wallet and wallet address too?