Hey so i want to be able to search and identify (with metadata) the NFTs I own from a specific collection. I’ve been trying to use the nftSearch api but have not had luck. it only lets me filter by the smart contract that created the NFTs. any suggestions on how to do this?
You’ll need to do this manually. E.g. use getNFTs with token_addresses
parameter to only get owned NFTs from a specific collection, group all of the results (if more than 100), and search through the metadata in your app or code.
this is great thank you!