Address
Balance
GET
https://nodes.lto.network/addresses/balance/:address
Get account balance
Path Parameters
Name
Type
Description
address
String
Account's address in Base58 format
{
"address": "3N3keodUiS8WLEw9W4BKDNxgNdUpwSnpb3K",
"confirmations": 0,
"balance": 100945889661986
}
Balance after confirmations
GET
https://nodes.lto.network/addresses/balance/:address/:confirmations
Get account balance after X confirmations from now
Path Parameters
Name
Type
Description
address
String
Account's address in Base58 format
confirmations
String
Number of confirmations
{
"address": "3N3keodUiS8WLEw9W4BKDNxgNdUpwSnpb3K",
"confirmations": 500,
"balance": 100945388397565
}
Balance details
GET
https://nodes.lto.network/addresses/balance/details/:address
Get balance details
Path Parameters
Name
Type
Description
address
String
Account's address in Base58 format
{
"address": "3P2HNUd5VUPLMQkJmctTPEeeHumiPN2GkTb",
"regular": 1498883844,
"generating": 1066926675599895,
"available": 1498883844,
"effective": 1067913688974251
}
Balance
Description
Regular
The amount LTO owned by the account, including LTO leased
Available
The amount LTO owned by the account, excluding LTO leased
Effective
The available amount + the LTO leased to the account
Generating
The minimal effective balance over the last 1000 blocks
Last updated