RSS3 Documentation

Retrieve the number of nodes, chips, and tokens staked of a staker

Retrieve the number of nodes, chips, and tokens staked by a specific staker. This endpoint returns detailed information about the staker, including the number of nodes staked, number of chips owned, total tokens staked, and the total value of the staker's assets.

GET
/nta/stakings/{staker_address}/stat
/nta/stakings/{staker_address}/stat

Path Parameters

staker_address
Required
string

The address of the staker whose profit information is to be retrieved.

curl -X GET "https://gi.rss3.io/nta/stakings/string/stat"

A successful response containing detailed information about the specified staker. The data includes the staker's wallet address, total staked nodes, total chips, total staked tokens, and current staked tokens.

{
  "data": {
    "address": "0x69982e017acc0fde3d1542205089a8d3eafcd1b7",
    "total_staked_nodes": 1,
    "total_chips": "374",
    "total_staked_tokens": "199547980194376366760196",
    "current_staked_tokens": "199547980194376366760196"
  }
}