How do I get the owner of a NFT protocol ERC1155

Im trying to get the owner of a NFT, I know the contract and the token ID, but I cant .
ERC1155 protocol

Thank you

You can try https://docs.moralis.io/moralis-server/web3-sdk/token#gettokenidowners

const options = { address: "0xd...07", token_id: "1", chain: "bsc" };
const tokenIdOwners= await Moralis.Web3API.token.getTokenIdOwners(options);