Skip to main content
Version: 2.2

Get Metadata for Multiple NFT Contracts

Don't have an API key yet?

Start using this API for your project today.

Get your free API key
POSThttps://deep-index.moralis.io/api/v2.2/nft/metadata

Get the collection / contract level metadata for a given list of contract addresses (name, symbol). Supports batching up to 25 addresses.

  • Requests for contract addresses not yet indexed will automatically start the indexing process for that NFT collection
QUERY PARAMS
chainstring
The chain to query
BODY PARAM
jsonrequired
Body
Responses
API KEY
// Dependencies to install:
// $ npm install node-fetch --save
// add "type": "module" to package.json

import fetch from 'node-fetch';

const options = {
method: 'POST',
headers: {
accept: 'application/json',
'X-API-Key': 'YOUR_API_KEY'
},
};

fetch('https://deep-index.moralis.io/api/v2.2/nft/metadata?chain=eth', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
Empty