evm_getmultiplenfts
Retrieve detailed NFT metadata, including on-chain and off-chain data, floor prices, and rarity, for up to 25 NFTs in a single request using specified token addresses and IDs.
Instructions
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.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | No | The chain to query | eth |
requestBody | Yes | Body |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"default": "eth",
"description": "The chain to query",
"enum": [
"eth",
"0x1",
"sepolia",
"0xaa36a7",
"polygon",
"0x89",
"bsc",
"0x38",
"bsc testnet",
"0x61",
"avalanche",
"0xa86a",
"fantom",
"0xfa",
"cronos",
"0x19",
"arbitrum",
"0xa4b1",
"chiliz",
"0x15b38",
"chiliz testnet",
"0x15b32",
"gnosis",
"0x64",
"gnosis testnet",
"0x27d8",
"base",
"0x2105",
"base sepolia",
"0x14a34",
"optimism",
"0xa",
"holesky",
"0x4268",
"polygon amoy",
"0x13882",
"linea",
"0xe708",
"moonbeam",
"0x504",
"moonriver",
"0x505",
"moonbase",
"0x507",
"linea sepolia",
"0xe705",
"flow",
"0x2eb",
"flow-testnet",
"0x221",
"ronin",
"0x7e4",
"ronin-testnet",
"0x7e5",
"lisk",
"0x46f",
"lisk-sepolia",
"0x106a",
"pulse",
"0x171"
],
"type": "string"
},
"requestBody": {
"description": "Body",
"properties": {
"media_items": {
"description": "Should preview media data be returned?",
"example": false,
"type": "boolean"
},
"normalizeMetadata": {
"description": "Should normalized metadata be returned?",
"example": false,
"type": "boolean"
},
"tokens": {
"description": "The tokens to be fetched (max 25 tokens)",
"example": [
{
"token_address": "0xa4991609c508b6d4fb7156426db0bd49fe298bd8",
"token_id": "12"
},
{
"token_address": "0x3c64dc415ebb4690d1df2b6216148c8de6dd29f7",
"token_id": "1"
},
{
"token_address": "0x3c64dc415ebb4690d1df2b6216148c8de6dd29f7",
"token_id": "200"
}
],
"items": {
"properties": {
"token_address": {
"description": "The contract address",
"example": "0x06012c8cf97bead5deae237070f9587f8e7a266d",
"type": "string"
},
"token_id": {
"description": "The id of the token",
"example": 100,
"type": "string"
}
}
},
"maxItems": 25,
"type": "array"
}
},
"required": [
"tokens"
]
}
},
"required": [
"requestBody"
],
"type": "object"
}