Skip to main content

TokenURI

Get the metadata URI of the NFT with the given tokenId (ERC-721 tokenURI(uint256)).

func TokenURI(
contractAddress string,
tokenId *big.Int,
) (uri string, err error)
func main() {
...
alchemy := gas.NewAlchemy(setting)
...
uri, err := alchemy.Nft.TokenURI(contractAddress, tokenId)
}