PolyMarket MCP Server

by berlinbra
Verified

get-market-history

Get historical price and volume data for a market

Input Schema

NameRequiredDescriptionDefault
market_idYesMarket ID or slug
timeframeNoTime period for historical data7d

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" }