evm_getnftfloorpricebycontract
Retrieve the current floor price of NFTs in a specified collection by contract address. Updated every 30 minutes via the Moralis MCP Server.
Instructions
Get floor price for a given collection. Refreshes every 30 minutes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address of the NFT contract | |
chain | No | The chain to query | eth |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address of the NFT contract",
"type": "string"
},
"chain": {
"default": "eth",
"description": "The chain to query",
"enum": [
"eth",
"0x1",
"base",
"0x2105",
"flow",
"0x2eb",
"ronin",
"0x7e4",
"bsc",
"0x38",
"arbitrum",
"0xa4b1"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}