/identities

List of all node identities, used to group nodes by the same entity. "Free-floating" nodes that do not belong to any identity will also be returned

Parameters

  • identities OPTIONAL : (array[string]) - Filter by comma-separated list of identities

Returns

  • identity : (string) - token identifier

  • locked : (number) - locked amount of tokens

  • distribution : (object)

    • direct : (number)

  • avatar : (string)

  • description : (string) - description of the node

  • name : (string) - the name of the node

  • score : (number) - the score number

  • validators : (number) - the number of validators

  • stake : (number) - the stake amount

  • topUp : (number) - top up amount

  • stakePercent : (number) - percent of the stake

  • apr : (number) -

  • rank : (number) - the rank number

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/identities?identities=elrondcom' \
  -H 'accept: application/json'

Result

[
  {
    "identity": "elrondcom",
    "locked": "3034999999999999983222642",
    "distribution": {
      "direct": 1
    },
    "avatar": "https://s3.amazonaws.com/keybase_processed_uploads/0300ffbfa1a598da0a666f7e22990405_360_360.jpg",
    "description": "A highly scalable, fast and secure blockchain platform for distributed apps, enterprise use cases and the new internet economy.",
    "name": "Elrond Community Delegation 🎖",
    "score": 98760,
    "validators": 798,
    "stake": "1995000000000000000000000",
    "topUp": "1039999999999999983222642",
    "stakePercent": 23.08,
    "apr": 11.95,
    "rank": 1
  }
]

Last updated