MCP Paradex Server

by sv
Verified

paradex-funding-data

Get historical funding rate data for a perpetual market. Retrieves funding rate history for a specified time period, which is essential for understanding the cost of holding perpetual positions. Returns: Dict[str, Any]: Historical funding rate data with timestamps. 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 - funding_data (None): Null value for funding data

Input Schema

NameRequiredDescriptionDefault
end_unix_msYesEnd time in unix milliseconds.
market_idYesMarket symbol to get funding data for.
start_unix_msYesStart time in unix milliseconds.

Input Schema (JSON Schema)

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