How can i get NFT METADATA on Unity?

How can i get NFT METADATA on Unity?
Hello everyone, i am developing a game with unity. I connected the wallet with moralis. It is working perfect. But i didn’t get nfts metadata from my wallet. There are 3 nft in my wallet at Ropsten test network. For example, nft meta data:

{
  "dna": "2cb16e6ce09083d1a5bd17c68c124ca5370637c6",
  "name": "#1",
  "description": "Your project description",
  "image": "ipfs://NewUriToReplace/1.gif",
  "edition": 1,
  "date": 1648631395696,
  "attributes": [
    {
      "trait_type": "Tribes",
      "value": "Male"
    },
    {
      "trait_type": "Backgrounds",
      "value": "Night"
    },
    {
      "trait_type": "Skins",
      "value": "Brown"
    },
    {
      "trait_type": "Hairs",
      "value": "Hairless"
    },
    {
      "trait_type": "Bottom Clothes",
      "value": "Blue Jeans"
    },
    {
      "trait_type": "Top Clothes",
      "value": "Black Suit"
    },
    {
      "trait_type": "Glasses",
      "value": "Cyberpunk Glasses"
    },
    {
      "trait_type": "Hats",
      "value": "Hatless"
    },
    {
      "trait_type": "Beards",
      "value": "Blonde Long Beard"
    },
    {
      "trait_type": "Mouths",
      "value": "Pipe"
    },
    {
      "trait_type": "Weapons",
      "value": "Sword"
    }
  ],
  "compiler": "Generative GIF Engine"
}

I want to get metadatas for characters. I tried this method but it did not work:

NftContractMetadata resp = await MoralisInterface.GetClient().Web3Api.Token.GetNFTMetadata(address, ChainList.ropsten);
Debug.Log($"GetNFTMetadata Name: {resp.Name}, TokenAddress: {resp.TokenAddress}");

Did the debug log show anything in the console like an error or undefined

What do you mean by nft metadata? Usually you need a token id, an address and a chain

Have you got the solution…?

What is your issue? You can get NFT metadata using the API.

I want to display my nft in unity, so don’t know the exact things I need to do in order to display it in Unity. How can i save nft data from wallet to moralis database automatically and then from there fetch all the nft present in my wallet to display in unity…

This is a tutorial you can follow, it shows you how you can display NFTs in-game.

Building In-Game Shop Selling NFTs using Solidity and Moralis