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": "EthereumSepolia",
  "nfts": [
    {
      "contract": "0x00fb58432ef9d418bf6688bcf0a226d2fcaa18e2",
      "name": "Muppets",
      "symbol": "MUPPETS",
      "tokenIds": ["0", "1"],
      "count": 2
    }
  ]
}

Last updated