/account/get/from-public-key - NEM

Example code for the /account/get/from-public-key rest method. Сomplete guide on how to use /account/get/from-public-key rest in GetBlock.io Web3 documentation.

Parameters

publicKey -

The public key of the account as hex string.

Request

curl --location --request GET 'https://go.getblock.io/<ACCESS-TOKEN>/account/get/from-public-key?publicKey=107051c28a2c009a83ae0861cdbff7c1cbab387c964cc433f7d191d9c3115ed7' \
--header 'Content-Type: application/json'

Response

{
    "account": {
        "address": "NCXIQA4FF5JB6AMQ53NQ3ZMRD3X3PJEWDJJJIGHT",
        "balance": 20612640711967,
        "harvestedBlocks": 52431,
        "importance": 0.0019859907077256836,
        "label": null,
        "multisigInfo": {},
        "publicKey": "107051c28a2c009a83ae0861cdbff7c1cbab387c964cc433f7d191d9c3115ed7",
        "vestedBalance": 20612602402832
    },
    "meta": {
        "cosignatories": [],
        "cosignatoryOf": [],
        "remoteStatus": "ACTIVE",
        "status": "LOCKED"
    }
}

Last updated