Get real time bill by payment address

This API method returns a list of real bills by payment address.

API Endpoint

Mainnet

https://open-platform.nodereal.io/{apikey}/greenfieldbilling-mainnet/

Testnet
https://open-platform.nodereal.io/{apikey}/greenfieldbilling-testnet/

method_path:/greenfield/bill_realtime/list/by_address/{address}

method_type:GET

Request:

ParametersQuery TypeRequiredData Typeschema
addresspathtruestring
pagequerytrueinteger
per_pagequerytrueinteger
startqueryfalseinteger
endqueryfalseinteger
typesqueryfalsestring

Response:

ParametersDescriptionData Typeschema
Balancestring
ReadCoststring
StoreCoststring
TotalCoststring
addressThe address is payment address or owner addressinteger
timestampstring
txHashTxHash defines the transaction hash of this account billinteger
txTypeTxType defines the transaction type of this account billstring

Example:

[
  {
    "Balance": "string",
    "ReadCost": "string",
    "StoreCost": "string",
    "TotalCost": "string",
    "address": [
      0
    ],
    "timestamp": "string",
    "txHash": [
      0
    ],
    "txType": "string"
  }
]