evm_getnftcontractsaleprices
Retrieve detailed NFT contract sale price data, including last, lowest, highest, and average sale prices, as well as total trades, over a specified period. Analyze NFT market trends efficiently.
Instructions
Fetch sale prices for NFTs in a contract over a specified number of days. Returns the last sale, lowest sale, highest sale, average sale and total trades within the specified period.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address of the NFT collection | |
chain | No | The chain to query | eth |
days | No | The number of days to look back to find the lowest price If not provided 7 days will be the default and 365 is the maximum |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address of the NFT collection",
"type": "string"
},
"chain": {
"default": "eth",
"description": "The chain to query",
"enum": [
"eth",
"0x1",
"polygon",
"0x89",
"bsc",
"0x38",
"avalanche",
"0xa86a",
"arbitrum",
"0xa4b1",
"base",
"0x2105",
"optimism",
"0xa",
"ronin",
"0x7e4"
],
"type": "string"
},
"days": {
"description": "The number of days to look back to find the lowest price\nIf not provided 7 days will be the default and 365 is the maximum\n",
"minimum": 0,
"type": "number"
}
},
"required": [
"address"
],
"type": "object"
}