MCP Paradex Server

by sv
Verified

paradex-market-summary

Get a summary of market statistics and current state. Retrieves current market summary information including price, volume, 24h change, and other key market metrics. Returns: Dict[str, Any]: Market summary information including: - Current price - 24h high/low - 24h volume - Price change percentage - Other market statistics If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - summary (None): Null value for summary

Input Schema

NameRequiredDescriptionDefault
market_idYesMarket symbol to get summary for.

Input Schema (JSON Schema)

{ "properties": { "market_id": { "description": "Market symbol to get summary for.", "title": "Market Id", "type": "string" } }, "required": [ "market_id" ], "title": "get_market_summaryArguments", "type": "object" }