/

Get page of Global Entity Fungible Resource Balances

post

Returns the total amount of each fungible resource owned by a given global entity. Result can be aggregated globally or per vault. The returned response is in a paginated format, ordered by the resource's first appearance on the ledger.

Body
all ofOptionalExample: {"address":"<component-entity-address>"}
Responses
200
Entity Fungibles (paginated)
application/json
Responseall of
post
POST /state/entity/page/fungibles/ HTTP/1.1
Host: xrd-gateway.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "address": "<component-entity-address>"
}
{
  "ledger_state": {
    "network": "<network-name>",
    "state_version": 1,
    "proposer_round_timestamp": "text",
    "epoch": 1,
    "round": 1
  },
  "total_count": 1,
  "next_cursor": "text",
  "items": [
    {
      "aggregation_level": "Global",
      "resource_address": "text",
      "explicit_metadata": {
        "total_count": 1,
        "next_cursor": "text",
        "items": [
          {
            "key": "text",
            "value": {
              "raw_hex": "text",
              "programmatic_json": {
                "kind": "Bool",
                "type_name": "text",
                "field_name": "text"
              },
              "typed": {
                "type": "String"
              }
            },
            "is_locked": true,
            "last_updated_at_state_version": 1
          }
        ]
      }
    }
  ],
  "address": "text"
}