Hi. I’m trying to fetch from the Moralis NFT preview endpoints, but I’m getting a CORS error.
Am I doing something wrong? Do I really need to run a proxy for these images? I looked through similar topics, but couldn’t find a relevant answer.
Thanks in advance!
Here is the example fetch:
fetch("https://nft-preview-media.s3.us-east-1.amazonaws.com/evm/0x1/0xd07dc4262bcdbf85190c01c996b4c06a461d2430/0xdf16d3821534d643453ee5df98c2c21a89020010489c44ebe0c2455fc35a5495/high.png")
.then((response) => response.json())
.then((response) => console.log(response))