Get a token's image
We serve token images from our own CDN to ensure consistent and fast loading. The
ERC721Token
type returns an images
array that serves various image sizes.query BAYCTokenImages {
token(
contractAddress: "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d"
tokenId: "1"
) {
... on ERC721Token {
images {
url
width
height
mimeType
}
}
}
}
Last modified 11mo ago