How to get NFT purchased date on getNFTs()

I need to get each NFT’s purchased date on getNFTs() . Please advise me on this.

My code is below,

  async function nftCollections(options) {

    nfts = await Moralis.Web3API.account.getNFTs(options);

    nfts = nfts.result;
    const nft_details = [];

    nfts.slice(0, 50).forEach(function (nft) {

        if (nft.token_uri) {
          let url = fixURL(nft.token_uri);
          let amount =nft.amount
          nftItem(url,amount);               
        }
    })
    
  }