⏺️Address Balance

Get the LTC balance of a particular address with no wallet specified

Address transactions without specifying the wallet

GET /api/Address/Address-balance

Get the confirmed and unconfirmed balance of a particular address (API reference)

Query Parameters

Name
Type
Description

Address*

String

the address to get it's balance

Headers

Name
Type
Description

Content-Type*

application/json

application in JSON format

Authorization*

Bearer <your Key>

attach your API key here

Usev2*

String

Value should be true or yes

Get Address Balance with Javascript SDK

Liaas SDK package installation

/** 
 * Get the Address Balance on Litecoin Blockchain
**/
 
//all the parameters specified here are the same as all the parameters in the API implementation
//pass your API key or Node URL and address
const response = await liaasSdk.ltcAddressBalance(nodeUrl_or_apiAccessKey, address);

Last updated

Was this helpful?