RSS3 Documentation

Retrieve Node operation profit by address

Retrieve the operation profit details for a specific Node by its address. This endpoint provides detailed profit and loss (PNL) information over different time periods.

GET
/nta/nodes/{address}/operation/profit
/nta/nodes/{address}/operation/profit

Path Parameters

address
Required
string

The address of the Node to retrieve.

curl -X GET "https://gi.rss3.io/nta/nodes/string/operation/profit"

A successful response containing detailed information about the operation profit of the specified node. Each entry includes address, operation pool, and PNL details for different time periods.

{
  "data": {
    "node_address": "0x69982e017acc0fde3d1542205089a8d3eafcd1b7",
    "operation_pool": "724429065703690345869831",
    "oneDay": {
      "date": "2024-06-17T20:02:35Z",
      "operation_pool": "724429065703690345869831",
      "profit_and_loss": "0"
    },
    "oneWeek": {
      "date": "2024-06-17T20:02:35Z",
      "operation_pool": "724429065703690345869831",
      "profit_and_loss": "0"
    },
    "oneMonth": {
      "date": "2024-06-17T20:02:35Z",
      "operation_pool": "724429065703690345869831",
      "profit_and_loss": "0"
    }
  }
}