Working with NFTs
Prerequisite: erc721ABI JSON file
Retrieve user NFT list
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.nansen.ai/v1/address/portfolio', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Retrieve user NFT details
Retrieve user NFT balance
Last updated