NFTScan Provider

EthereumPolygonBinance Smart ChainArbitrumMoonbeamOptimismNFTScan

TIP

You can use NFTScan API for free (10,000 requests / day, 10 requests / second), and you can pay for more frequent requests.

You must register an NFTScan account and initialize with nftscanAPIKey to use this provider.

You can initialize with ipfsGateway to potentially get a faster response or higher stability.

API

const assets: Assets = await unidata.assets.get(options: {
    source: 'Ethereum NFT';
    identity: string;
    providers?: ['NFTScan'];
    limit?: number;
    cursor?: string[];
});

Live Demo

42 / 42
Code
const assets: Assets = await unidata.assets.get({
    source: 'Ethereum NFT',
    identity: '0xC8b960D09C0078c18Dcbe7eB9AB9d816BcCa8944',
    providers: ["NFTScan"],
});
View
Networks:
Providers:
Data
{
    "total": 0,
    "list": []
}