Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Get Multiple NFTs

POSThttps://deep-index.moralis.io/api/v2.2/nft/getMultipleNFTs

Get NFT metadata for one or many NFTs. Accepts an array of up to 25 tokens, each requiring token_address and token_id. Each NFT returned includes on-chain metadata as well as off-chain metadata, floor prices, rarity and more where available.

QUERY PARAMS
chainstring
The chain to query
BODY PARAM
Request Bodyobjectrequired
Body
Responses
200Returns a collection of NFT owners
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request POST \
--url 'https://deep-index.moralis.io/api/v2.2/nft/getMultipleNFTs?chain=eth' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '
{
"tokens": [
{
"token_address": "0xa4991609c508b6d4fb7156426db0bd49fe298bd8",
"token_id": "12"
},
{
"token_address": "0x3c64dc415ebb4690d1df2b6216148c8de6dd29f7",
"token_id": "1"
},
{
"token_address": "0x3c64dc415ebb4690d1df2b6216148c8de6dd29f7",
"token_id": "200"
}
],
"normalizeMetadata": false,
"media_items": false
}
'
Response Example
Empty