Get NFTs by wallet Id

How to retrieve NFTs by wallet ID.

Request Endpoint: reference

 GET /api/wallets/{walletId}/nonfungibles
ParameterParam TypeDescriptionTypeRequired
{walletId}PathID of the walletString
contract-addressesQueryWhen set, the result will only contain tokens of these NFT contract addresses. Multiple values can be set.Array of strings

Example Request:

GET https://api-wallet-sandbox.venly.io/api/wallets/da8d6b3b-5e4a-4e9d-b12f-59d68b396d6f/nonfungibles

Response Body:

{
    "success": true,
    "result": [
        {
            "id": "4",
            "animationUrls": [],
            "fungible": false,
            "contract": {
                "name": "Stickman NFT Collection",
                "address": "0x15d99ba71ba3d9d062dd488bb757ddda3c25bb62",
                "symbol": "STNFCO",
                "type": "ERC_1155",
                "verified": false,
                "premium": false,
                "categories": []
            },
            "attributes": [],
            "balance": 1,
            "finalBalance": 1,
            "transferFees": false
        },
        {
            "id": "3",
            "animationUrls": [],
            "fungible": false,
            "contract": {
                "name": "Stickman NFT Collection",
                "address": "0x15d99ba71ba3d9d062dd488bb757ddda3c25bb62",
                "symbol": "STNFCO",
                "type": "ERC_1155",
                "verified": false,
                "premium": false,
                "categories": []
            },
            "attributes": [],
            "balance": 1,
            "finalBalance": 1,
            "transferFees": false
        },
        {
            "id": "2",
            "animationUrls": [],
            "fungible": false,
            "contract": {
                "name": "Stickman NFT Collection",
                "address": "0x15d99ba71ba3d9d062dd488bb757ddda3c25bb62",
                "symbol": "STNFCO",
                "type": "ERC_1155",
                "verified": false,
                "premium": false,
                "categories": []
            },
            "attributes": [],
            "balance": 1,
            "finalBalance": 1,
            "transferFees": false
        }
    ]
}