/accounts/{address}/keys

Returns all active / queued nodes where the account is owner

Parameters

  • address REQUIRED (string) - Account bech32 address

Returns

Returns an array of strings of all active nodes where the account is owner

  • blsKey: (string)

  • stake: (string)

  • topUp: (string)

  • status: (string)

  • rewardAddress: (string)

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/accounts/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85/keys' \
  -H 'accept: application/json'

Result

[
  {
    "blsKey": "f86afa004521b87e5584af9421525930d887357a51ef61950dc11f4751cd0e593b4a205c6b375d6d35fba8964835ec0af50287a5a057eddec64d1e9502e54802ee598f31b94da43244d3b15453a41137e22d079c0694d4edc95b801f7f66dc86",
    "stake": "2500000000000000000000",
    "topUp": "629462319806993045703",
    "status": "staked",
    "rewardAddress": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85"
  },
  {
    "blsKey": "b7c62a1293550a148789bac37252da66cf6d30df300ab4892024deed4a42f4612aaa52d115e48507bc5181b21b80f1084b4fff7e8e21884b86e8eac1cb70938756a8495f8bb89f96bbb617bba7169c5be4e78ee8ef9e46b2a91fe23c07b04295",
    "stake": "2500000000000000000000",
    "topUp": "629462319806993045703",
    "status": "staked",
    "rewardAddress": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85"
  },
  {
    "blsKey": "fa57c5b42cc3d46fda04e752dd69d81e035f8761903ce03e05fa3583d21064cf55d048c7a2a0ec4c061416ddd0918a03be37bb0b320ee3d886af597be5c8d3ece59680fbfffe440278c70ad39027fef830e46f69d1a0b478a387fd634843508e",
    "stake": "2500000000000000000000",
    "topUp": "629462319806993045703",
    "status": "staked",
    "rewardAddress": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85"
  }
]

Last updated