Get account

post

Returns an object containing various details about a specific account on the blockchain.

Body
account_nameany ofRequired
stringOptional

String representation of privileged EOSIO name type

Pattern: ^(eosio[\.][a-z1-5]{1,6})([a-j]{1})?$
or
stringOptional

String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5

Pattern: ^([a-z]{1}[a-z1-5]{11})([a-j]{1})?$
or
stringOptional

String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed

Pattern: ^([a-z1-5]{1,12})([a-j]{1})?$
or
stringOptional

String representation of EOSIO name type

Pattern: ^([a-z1-5]{1}[a-z1-5\.]{0,10}[a-z1-5]{1})([a-j]{1})?$
Responses
200
OK
application/json
post
POST /v1/chain/get_account HTTP/1.1
Host: eos.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 23

{
  "account_name": "text"
}
200

OK

{
  "account_name": "text",
  "head_block_num": 1,
  "head_block_time": "text",
  "last_code_update": "text",
  "created": "text",
  "refund_request": {
    "owner": "text",
    "request_time": "text",
    "net_amount": "text",
    "cpu_amount": "text"
  },
  "ram_quota": "text",
  "net_limit": {
    "max": "text",
    "available": "text",
    "used": "text"
  },
  "cpu_limit": {
    "max": "text",
    "available": "text",
    "used": "text"
  },
  "total_resources": {
    "owner": "text",
    "ram_bytes": "text",
    "net_weight": "text",
    "cpu_weight": "text"
  },
  "core_liquid_balance": "text",
  "self_delegated_bandwidth": {
    "from": "text",
    "to": "text",
    "net_weight": "text",
    "cpu_weight": "text"
  },
  "net_weight": "text",
  "cpu_weight": "text",
  "ram_usage": "text",
  "privileged": true,
  "permissions": [
    {
      "parent": "text",
      "perm_name": "text",
      "required_auth": {
        "waits": [
          {
            "wait_sec": 1,
            "weight": 1
          }
        ],
        "keys": [
          {
            "key": "text",
            "weight": 1
          }
        ],
        "threshold": 1,
        "accounts": [
          {
            "weight": 1,
            "permission": {
              "actor": "text",
              "permission": "text"
            }
          }
        ]
      }
    }
  ],
  "voter_info": {
    "owner": "text",
    "proxy": "text",
    "producers": [
      "text"
    ],
    "staked": "text",
    "last_vote_weight": "text",
    "proxied_vote_weight": "text",
    "is_proxy": 1,
    "flags1": 1,
    "reserved2": 1,
    "reserved3": "text"
  }
}

Revision created

GitBook: No commit message