MCP Paradex Server

by sv
Verified

paradex-market-details

Get detailed information about a specific market. Retrieves comprehensive details about a specific market, including base and quote assets, tick size, minimum order size, and other trading parameters. Returns: Dict[str, Any]: Detailed market information with the following structure: - success (bool): Whether the request was successful - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment (mainnet/testnet) - details (Dict): Detailed market information including trading parameters - error (str, optional): Error message if request failed

Input Schema

NameRequiredDescriptionDefault
market_idYesMarket symbol to get details for.

Input Schema (JSON Schema)

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