Getting token balance

Every asset can have an amount of tokens which a wallet can own. These can be used to transfer or spend for specific actions. As the ledger is openly accessable on the Blockchain, any address can be checked for their token amount.

GET /tokens/{address}/{assetId}

"value": {
  "address": "string",
  "uniqueAssetId": "string",
  "sparks": "string",
  "tokens": "string"
}
  • address: The address that has been checked for.
  • uniqueAssetId: The asset that has been checked for.
  • sparks: The amount of balance in sparks. These are the smallest unit on the Blockchain.
  • tokens: The amount of balance in tokens, mostly in a specific unit of measure. These can be smaller than sparks.