MCP Paradex Server

by sv
Verified

paradex-trades

Get recent trades for a market. Retrieves historical trade data for a specified market and time period. Each trade includes price, size, side (buy/sell), and timestamp information. Returns: Dict[str, Any]: List of trades with the following structure for each trade: - id: Trade ID - price: Execution price - size: Trade size - side: "buy" or "sell" - timestamp: Time of execution 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
end_unix_msNoEnd time in unix milliseconds.
market_idYesMarket symbol to get trades for.
start_unix_msNoStart time in unix milliseconds.

Input Schema (JSON Schema)

{ "properties": { "end_unix_ms": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "description": "End time in unix milliseconds.", "title": "End Unix Ms" }, "market_id": { "description": "Market symbol to get trades for.", "title": "Market Id", "type": "string" }, "start_unix_ms": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "description": "Start time in unix milliseconds.", "title": "Start Unix Ms" } }, "required": [ "market_id" ], "title": "get_tradesArguments", "type": "object" }