Get wallet balance and number of transactions by address and network
networkId
address
curl -L \ --url 'http://api.client.nbcgate.tech//api/wallet/{networkId}/{address}' \ --header 'Authorization: YOUR_API_KEY'
{ "balance": "text", "tokens": [ { "id": 1, "name": "text", "value": "text" } ], "transactionCount": "text" }
Creating a wallet on the blockchain network
curl -L \ --request POST \ --url 'http://api.client.nbcgate.tech//api/wallet' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "blockchainType": "text", "locale": "text" }'
{ "address": "text", "blockchainType": "text" }