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

Language:

QueryNFT

Query single NFT's details.

Parameters

token_address|string - The address of the NFT.

token_id|int - The token_id of the NFT.

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

Returns

response class - CommonResponse<EVMResNFTInfo[]>

Code Example


string token_address = "token address";
int token_id = "token id";
MWSDK.Polygon.Asset.QueryNFT(token_address, token_id, (res) => {
CommonResponse<EVMResNFTInfo[]> resObj = res;
long code = resObj.code;
string message = resObj.message;
EVMResNFTInfo[] nftInfo = resObj.data;
//todo...
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog