Get real time bill by owner address

This API method returns a list of real bills by owner 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_owner/{owner}

method_type:GET

Request:

ParametersQuery TypeRequiredData Typeschema
ownerpathtruestring
paymentsqueryfalsestring
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"
  }
]