How Could I get eth balance?

Hello,
Iā€™m developing Moralis API
Connecting metamask wallet is perfect, and get ethAddress is working.
Howevere there is no document ā€œuserā€ js object properties such as ā€œbalanceā€ etcā€¦
How Could I know these properties?

For example, user.get(ā€œethAddressā€)

you have to call a web3api function to get the balance for a specific address:, for example:

// get mainnet native balance for the current user
const balance = await Moralis.Web3API.account.getNativeBalance();

// get BSC native balance for a given address
const options = { chain: "bsc", address: "0x...", to_block: "1234" };
const balance = await Moralis.Web3API.account.getNativeBalance(options);

https://docs.moralis.io/moralis-server/web3-sdk/account#getnativebalance

in case that you need the balance of ERC20 tokens:
https://docs.moralis.io/moralis-server/web3-sdk/account#gettokenbalances

Thanks for your reply!