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:
Parameters | Query Type | Required | Data Type | schema |
---|---|---|---|---|
owner | path | true | string | |
payments | query | false | string | |
page | query | true | integer | |
per_page | query | true | integer | |
start | query | false | integer | |
end | query | false | integer | |
types | query | false | string |
Response:
Parameters | Description | Data Type | schema |
---|---|---|---|
Balance | string | ||
ReadCost | string | ||
StoreCost | string | ||
TotalCost | string | ||
address | The address is payment address or owner address | integer | |
timestamp | string | ||
txHash | TxHash defines the transaction hash of this account bill | integer | |
txType | TxType defines the transaction type of this account bill | string |
Example:
[
{
"Balance": "string",
"ReadCost": "string",
"StoreCost": "string",
"TotalCost": "string",
"address": [
0
],
"timestamp": "string",
"txHash": [
0
],
"txType": "string"
}
]