USDT on moralis

Dear Support,
Is it possible to check the ERC20 USDT balance (and any other ERC20 token), send and/or receive tokens with Moralis?

it is possible, here is the documentation:
https://docs.moralis.io/moralis-server/sending-assets#transferring-erc1155-tokens-semi-fungible
https://docs.moralis.io/moralis-server/web3-sdk/account#gettokenbalances

The first link is not exactly what I’m referring to since it’s ERC1155.
Checking the documentation

const options = { chain: 'bsc', address: "0x...", to_block: "10253391" }
const balances = await Moralis.Web3API.account.getTokenBalances(options);

For the example that I’m mentioning, how can I check the balance for USDT with this function?
Maybe I’m missing something?

you can try to read the documentation first

you will get all the tokens and you can filter by USDT after that, first function was an example to point you where from to read in the documentation.