Account fungible resource balance

Get Single Account Balance

post

Returns balance of a single fungible resource in an account

Body
networkstringRequired

The logical name of the network

Example: {{network}}
account_addressstringRequired

The Bech32m-encoded human readable version of the account's address

resource_addressstringRequired

The Bech32m-encoded human readable version of the resource address

Responses
200
Account resource balance response
application/json
post
POST /lts/state/account-fungible-resource-balance HTTP/1.1
Host: xrd.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 76

{
  "network": "{{network}}",
  "account_address": "text",
  "resource_address": "text"
}
{
  "state_version": 1,
  "ledger_header_summary": {
    "epoch_round": {
      "epoch": 1,
      "round": 1
    },
    "ledger_hashes": {
      "state_tree_hash": "text",
      "transaction_tree_hash": "text",
      "receipt_tree_hash": "text"
    },
    "proposer_timestamp": {
      "unix_timestamp_ms": 1,
      "date_time": "text"
    }
  },
  "account_address": "text",
  "fungible_resource_balance": {
    "fungible_resource_address": "text",
    "amount": "text"
  }
}