get_daily_sales_by_collection
Retrieve daily sales data for NFT collections in a structured markdown table format. Use this tool to analyze trends and monitor transaction volumes across collections efficiently.
Instructions
Retrieve number of daily sales for NFT collections.
Args:
limit (int, optional): Maximum number of rows to fetch from the query. Defaults to 1000.
Returns:
str: Markdown table of daily sales counts 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_daily_sales_by_collectionArguments",
"type": "object"
}