get_average_price_by_collection
Calculate average selling prices for NFT collections using data from Dune Analytics. Fetches results in a markdown table format, with customizable row limits for detailed insights.
Instructions
Retrieve average selling price for NFT collections.
Args:
limit (int, optional): Maximum number of rows to fetch from the query. Defaults to 1000.
Returns:
str: Markdown table of average prices by collection, or error message if the query fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 1000,
"title": "Limit",
"type": "integer"
}
},
"title": "get_average_price_by_collectionArguments",
"type": "object"
}