Staker

Fetch staker information by address

Retrieves the staker information for a given address from the Nimiq RPC.

GET
/getStakerByAddress/{address}
/getStakerByAddress/{address}

Path Parameters

address
Required
string

The address of the staker.

curl -X GET "https://test.nimiqhub.com/getStakerByAddress/string"

Staker information retrieved successfully

{
  "data": {
    "address": "string",
    "balance": 0,
    "delegation": "string",
    "inactiveBalance": 0,
    "inactiveFrom": null,
    "retiredBalance": 0
  },
  "metadata": {
    "blockNumber": 0,
    "blockHash": "string"
  }
}