MCP Paradex Server

by sv
Verified

paradex-bbo

Get the Best Bid and Offer (BBO) for a market. Retrieves the current best bid and best offer (ask) prices and sizes for a specified market. This represents the tightest spread currently available. Returns: Dict[str, Any]: Best bid and offer information including: - bid price and size - ask price and size - 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

Input Schema

NameRequiredDescriptionDefault
market_idYesMarket symbol to get BBO for.

Input Schema (JSON Schema)

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