Get NFTs by Chain

How to retrieve NFTs by blockchain.

Request Endpoint: reference

 GET /api/wallets/nonfungibles
ParameterParam TypeDescriptionTypeRequired
secretTypeQueryThe blockchain to filter and retrieve NFTs byArray of String

Example Request:

GET https://api-wallet-sandbox.venly.io/api/wallets/nonfungibles?secretType=ETHEREUM

Response Body:

{
    "success": true,
    "result": [
        {
            "walletId": "bcda28e9-e068-4352-aebc-147e6443bdcd",
            "walletAddress": "0x548372d982F478683FC1fc59b2e3224b4899fFBE",
            "walletType": "API_WALLET",
            "secretType": "ETHEREUM",
            "items": [
                {
                    "id": "7",
                    "name": "My first NFT Token-type",
                    "description": "Venly",
                    "imageUrl": "https://cdn.simplehash.com/assets/adb293187b3830088ba0e9cf16deffcd77b1b74e08938ea7e38c09231e6a9e32.png",
                    "imagePreviewUrl": "https://lh3.googleusercontent.com/F3CdV_Dfd-YwRD425LfL909BVjWRylGTLTKQ9Fw75KWWrKRjm1DDQR4lxctrmpjqQJNRcRRTU5R3X8zmN_WwNoD1_CGlhU5eHPM",
                    "imageThumbnailUrl": "https://lh3.googleusercontent.com/F3CdV_Dfd-YwRD425LfL909BVjWRylGTLTKQ9Fw75KWWrKRjm1DDQR4lxctrmpjqQJNRcRRTU5R3X8zmN_WwNoD1_CGlhU5eHPM=s250",
                    "animationUrls": [],
                    "fungible": false,
                    "contract": {
                        "name": "NFT Collection",
                        "description": "Sample description",
                        "address": "0x5bacbf6e75cae54c7dcd9c94d95ccf9c98f6ac74",
                        "symbol": "NFCO",
                        "media": [
                            {
                                "type": "image",
                                "value": "https://lh3.googleusercontent.com/K7EOZpY7h0wI2wJHvqEEL9cKbmYjw4w94qhbYhONZTA4bHGpH-cMn2B4SMenfw0DMZI07Dbhh8VQb2KDPeDxH32J6E1AOa8CIPJG"
                            }
                        ],
                        "type": "ERC_1155",
                        "verified": false,
                        "premium": false,
                        "isNsfw": false,
                        "categories": [],
                        "imageUrl": "https://lh3.googleusercontent.com/K7EOZpY7h0wI2wJHvqEEL9cKbmYjw4w94qhbYhONZTA4bHGpH-cMn2B4SMenfw0DMZI07Dbhh8VQb2KDPeDxH32J6E1AOa8CIPJG"
                    },
                    "attributes": [
                        {
                            "type": "property",
                            "name": "Token Type ID",
                            "value": "1"
                        }
                    ],
                    "balance": 1,
                    "finalBalance": 1,
                    "transferFees": false
                },
                {
                    "id": "6",
                    "name": "My first NFT Token-type",
                    "description": "Venly",
                    "imageUrl": "https://cdn.simplehash.com/assets/adb293187b3830088ba0e9cf16deffcd77b1b74e08938ea7e38c09231e6a9e32.png",
                    "imagePreviewUrl": "https://lh3.googleusercontent.com/F3CdV_Dfd-YwRD425LfL909BVjWRylGTLTKQ9Fw75KWWrKRjm1DDQR4lxctrmpjqQJNRcRRTU5R3X8zmN_WwNoD1_CGlhU5eHPM",
                    "imageThumbnailUrl": "https://lh3.googleusercontent.com/F3CdV_Dfd-YwRD425LfL909BVjWRylGTLTKQ9Fw75KWWrKRjm1DDQR4lxctrmpjqQJNRcRRTU5R3X8zmN_WwNoD1_CGlhU5eHPM=s250",
                    "animationUrls": [],
                    "fungible": false,
                    "contract": {
                        "name": "NFT Collection",
                        "description": "Sample description",
                        "address": "0x5bacbf6e75cae54c7dcd9c94d95ccf9c98f6ac74",
                        "symbol": "NFCO",
                        "media": [
                            {
                                "type": "image",
                                "value": "https://lh3.googleusercontent.com/K7EOZpY7h0wI2wJHvqEEL9cKbmYjw4w94qhbYhONZTA4bHGpH-cMn2B4SMenfw0DMZI07Dbhh8VQb2KDPeDxH32J6E1AOa8CIPJG"
                            }
                        ],
                        "type": "ERC_1155",
                        "verified": false,
                        "premium": false,
                        "isNsfw": false,
                        "categories": [],
                        "imageUrl": "https://lh3.googleusercontent.com/K7EOZpY7h0wI2wJHvqEEL9cKbmYjw4w94qhbYhONZTA4bHGpH-cMn2B4SMenfw0DMZI07Dbhh8VQb2KDPeDxH32J6E1AOa8CIPJG"
                    },
                    "attributes": [
                        {
                            "type": "property",
                            "name": "Token Type ID",
                            "value": "1"
                        }
                    ],
                    "balance": 1,
                    "finalBalance": 1,
                    "transferFees": false
                }
            ]
        }
    ]
}