Get NFT info
Item
Description
Constructor
Description
new TokenNftInfoQuery()Methods
Method
Type
Description
Requirement
//Returns the info for the specified NFT ID
List<TokenNftInfo> nftInfos = new TokenNftInfoQuery()
.byNftId(nftId)
.execute(client);
//v1.5.0//Returns the info for the specified NFT ID
const nftInfos = await new TokenNftInfoQuery()
.byNftId(nftId)
.execute(client);
//v1.4.10Last updated