Links

NFT Fingerprint

Get information about a list of NFTs.

v1/nfts

Describe a batch of NFTs. Provides collection information and active listings for each NFT.
For more information on working with NFT collections, please read here.
The active listings data is in Alpha, for more information please read here.
Oops, something is missing.
We could not find the original source to display this content.

Code Samples

Basic example

const axios = require('axios')
const url = `https://api.helius.xyz/v1/nfts?api-key=<api_key>`
const describeNfts = async () => {
const { data } = await axios.post(url, {
mints: [
"KG6f4Fa6YxAW8cG2Dhb18DiMn3rQ3rSLa1Eo2FYM4gi",
"5DpgiDMxJ5DNw6gMtJb5DTpVMKwNGvnEyLCfR5NkQFYP"
]
});
console.log("nfts: ", data.result);
};
describeNfts();