---
title: "POST /get_account"
method: POST
path: "/get_account"
---

# POST /get_account

`POST /get_account`

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

## Request body

- object
  - `account_name` union, required
    - string — String representation of privileged EOSIO name type
    - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
    - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
    - string — String representation of EOSIO name type

## Response `200`

OK

- Account
  - `account_name` union, required
    - string — String representation of privileged EOSIO name type
    - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
    - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
    - string — String representation of EOSIO name type
  - `head_block_num` integer, required
  - `head_block_time` string, required — Date/time string in the format YYYY-MM-DDTHH:MM:SS.sss
  - `last_code_update` string, required — Date/time string in the format YYYY-MM-DDTHH:MM:SS.sss
  - `created` string, required — Date/time string in the format YYYY-MM-DDTHH:MM:SS.sss
  - `refund_request` RefundRequest, nullable, required
    - `owner` union, required
      - string — String representation of privileged EOSIO name type
      - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
      - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
      - string — String representation of EOSIO name type
    - `request_time` string, required
    - `net_amount` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.
    - `cpu_amount` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.
  - `ram_quota` union, required — A whole number
    - string
    - integer
  - `net_limit` ResourceLimits, required
    - `max` union, required — A whole number
      - string
      - integer
    - `available` union, required — A whole number
      - string
      - integer
    - `used` union, required — A whole number
      - string
      - integer
  - `cpu_limit` ResourceLimits, required
    - `max` union, required — A whole number
      - string
      - integer
    - `available` union, required — A whole number
      - string
      - integer
    - `used` union, required — A whole number
      - string
      - integer
  - `total_resources` ResourceOverview, required
    - `owner` union, required
      - string — String representation of privileged EOSIO name type
      - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
      - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
      - string — String representation of EOSIO name type
    - `ram_bytes` union, required — A whole number
      - string
      - integer
    - `net_weight` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.
    - `cpu_weight` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.
  - `core_liquid_balance` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.
  - `self_delegated_bandwidth` ResourceDelegation, nullable, required
    - `from` union, required
      - string — String representation of privileged EOSIO name type
      - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
      - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
      - string — String representation of EOSIO name type
    - `to` union, required
      - string — String representation of privileged EOSIO name type
      - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
      - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
      - string — String representation of EOSIO name type
    - `net_weight` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.
    - `cpu_weight` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.
  - `net_weight` union, required — A whole number
    - string
    - integer
  - `cpu_weight` union, required — A whole number
    - string
    - integer
  - `ram_usage` union, required — A whole number
    - string
    - integer
  - `privileged` boolean, required
  - `permissions` Permission[], required
    - `parent` string, required — The parent of this permission, if any
    - `perm_name` string, required — Name of this permission
    - `required_auth` RequiredAuthority, required
      - `waits` Wait[], required
        - `wait_sec` integer, required
        - `weight` integer, required
      - `keys` KeyAuthority[], required
        - `key` string, required — Base58 encoded EOSIO public key
        - `weight` integer, required
      - `threshold` integer, required
      - `accounts` AccountAuthority[], required
        - `weight` integer, required
        - `permission` Authority, required
          - `actor` union, required
            - string — String representation of privileged EOSIO name type
            - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
            - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
            - string — String representation of EOSIO name type
          - `permission` union, required
            - string — String representation of privileged EOSIO name type
            - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
            - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
            - string — String representation of EOSIO name type
  - `voter_info` VoterInfo, nullable, required
    - `owner` union, required
      - string — String representation of privileged EOSIO name type
      - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
      - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
      - string — String representation of EOSIO name type
    - `proxy` union, required
      - union
        - string — String representation of privileged EOSIO name type
        - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
        - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
        - string — String representation of EOSIO name type
      - string
    - `producers` Name[], required
      - union
        - string — String representation of privileged EOSIO name type
        - string — String representation of basic EOSIO name type, must be 12 characters and contain only a-z and 0-5
        - string — String representation of EOSIO bid name type, 1-12 characters and only a-z and 0-5 are allowed
        - string — String representation of EOSIO name type
    - `staked` union, required — A whole number
      - string
      - integer
    - `last_vote_weight` string, required
    - `proxied_vote_weight` string, required
    - `is_proxy` integer, required — 1 if true, 0 if false.
    - `flags1` integer, required
    - `reserved2` integer, required
    - `reserved3` string, required — A string representation of an EOSIO symbol, composed of a float with a precision of 4, and a symbol composed of capital letters between 1-7 letters separated by a space, example `1.0000 ABC`.

---

[API](https://skmtc.net/worldwide-asset-exchange/apis/chain-api.md) · [All operations](https://skmtc.net/worldwide-asset-exchange/apis/chain-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/worldwide-asset-exchange/chain-api/revisions/5bfa22186461/schema)
