MCP Paradex Server

by sv
Verified
MIT License
3
  • Linux
  • Apple

paradex-bbo

Retrieve the current best bid and offer (BBO) prices and sizes for a specified market, including bid and ask details, timestamps, and error handling for accurate market data analysis.

Instructions

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" }
ID: cq4bz5ljqj