MCP Paradex Server

by sv
Verified

paradex-orderbook

Get the current orderbook for a market. Retrieves the current state of the orderbook for a specified market, showing bid and ask orders up to the requested depth. Returns: Dict[str, Any]: Orderbook data including: - bids: List of [price, size] pairs - asks: List of [price, size] pairs - timestamp 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 - orderbook (None): Null value for orderbook

Input Schema

NameRequiredDescriptionDefault
depthNoThe depth of the orderbook to retrieve.
market_idYesMarket symbol to get orderbook for.

Input Schema (JSON Schema)

{ "properties": { "depth": { "default": 10, "description": "The depth of the orderbook to retrieve.", "title": "Depth", "type": "integer" }, "market_id": { "description": "Market symbol to get orderbook for.", "title": "Market Id", "type": "string" } }, "required": [ "market_id" ], "title": "get_orderbookArguments", "type": "object" }