/identities/{identifier}

Returns the details of a single identity

Parameters

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

Returns

  • identity : (string) - token identifier

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

  • description : (string) - description of the node

  • avatar : (string)

  • website : (string) - website link

  • twitter : (string) - twitter link

  • location : (string) - location of the node

  • score : (number) - the score number

  • validators : (number) - the number of validators

  • stake : (number) - the stake amount

  • topUp : (number) - top up amount

  • locked : (number) - locked amount of tokens

  • distribution : (object)

  • providers : (object) - {}

  • 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/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