Wallet Token

/api/Wallet/wallet-tokens

​A GET request to get an address balance on the Litecoin Blockchain

Wallet token balances

GET /api/Wallet/wallet-tokens

A GET request to get all tokens belonging to a wallet on the Litecoin Blockchain

Headers

NameTypeDescription

Content-Type

application/json

Authorization*

Bearer <your api key>

attach your API key here

wallet*

String

The wallet name you created

Usev2*

String

Value should be true or yes

Base URL

Kakr LiaaS users looking to utilize the Litecoin Blockchain Services API can do so from our dedicated API endpoint base URL:

Address Balance SDK

Liaas SDK package installation

/** 
 * Retreive address balance
 **/
 
 //pass your API key, the wallet name and the address
const response = await liaasSdk.getLtcAddressBalance(
apiAccessKey,
wallet,
address);

Last updated