Get Wallet NFTs

GET /wallets/{walletId}/nfts

Retrieves a list of NFTs owned by the specified Wallet.

Required Permissions

NameConditions

Wallets:Read

Always Required

Parameters

Path parameters

Path parameterDescription

walletId

Unique identifier of the Wallet. ex. wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx

Response

200 Response example

{
  "walletId": "wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx",
  "network": "Ethereum",
  "nfts": [
    {
      "kind": "Erc721",
      "contract": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "symbol": "BAYC",
      "tokenId": "8500",
      "tokenUri": "ipfs://QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8500"
    },
    {
      "kind": "Erc721",
      "contract": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "symbol": "BAYC",
      "tokenId": "2944",
      "tokenUri": "ipfs://QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2944"
    }
  ]
}

Last updated