get-market-history
Retrieve historical price and volume data for a specified market using a Market ID or slug. Choose timeframes like 1d, 7d, 30d, or all to analyze market trends and performance over time.
Instructions
Get historical price and volume data for a market
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market_id | Yes | Market ID or slug | |
timeframe | No | Time period for historical data | 7d |
Input Schema (JSON Schema)
{
"properties": {
"market_id": {
"description": "Market ID or slug",
"type": "string"
},
"timeframe": {
"default": "7d",
"description": "Time period for historical data",
"enum": [
"1d",
"7d",
"30d",
"all"
],
"type": "string"
}
},
"required": [
"market_id"
],
"type": "object"
}