Skip to main content
BETA
HomeIntegration BuilderAPI ReferenceGuidesChangelog
View Mirror World on Github
Join the Discord server

Language:

SearchNFTsByOwner

Fetch NFTs By Owner Addresses. Returns a detailed payload of all NFTs whose owners are provided.

Parameters

owners|List<string> - The owner wallet addresses you are planning to query.

limit|int - The number of NFTs to return. Default is 10.

offset|int - The offset of NFTs to return. Default is 0.

action|Action<CommonResponse<MultipleNFTsResponse>> - The callback function of this method is used to receive the results.

Returns

response class - CommonResponse<MultipleNFTsResponse>

Code Example


List<string> owners = new List<string>();
owners.Add("address_1");
owners.Add("address_2");
int limit = 1;
int offset = 1;
MWSDK.Solana.Asset.SearchNFTsByOwner(owners, limit, offset, (res) => {
CommonResponse<MultipleNFTsResponse> resObj = res;
long code = res.code;
string message = res.message;
MultipleNFTsResponse multipleNFTs = res.data;
//todo...
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog