Guides
Guides

Overview

Mudrex Futures API gives programmatic control over your Mudrex trading account. You can transfer funds between your spot and futures wallets, list tradeable instruments, set leverage/margin type for each asset, place and manage orders, track open positions, and retrieve fee histories.

All endpoints are versioned under https://trade.mudrex.com/fapi/v1
Requests require an X-Authentication header carrying your API secret
Responses are JSON encoded
Numeric values are strings to preserve precision.


Specifications

  • Host: https://trade.mudrex.com
  • Base path: /fapi/v1
  • Example: https://trade.mudrex.com/fapi/v1/<resource>
  • Headers
    • Authentication header: X-Authentication: <token> required with every request.
    • Content-Type header: Content-Type: application/json required with POST/PATCH/DELETE requests.
  • Rate limits
    • 2 API requests per second. More details here

Resources

ResourcePurpose
WalletFetch spot wallet balances; move funds between spot and futures.
FuturesFetch futures wallet balance and available transfer amount.
AssetsList all futures instruments with sorting/pagination; retrieve full metadata for a specific asset.
LeverageGet or set leverage and margin type (isolated) for a specific asset.
OrdersCreate new orders (market or limit), list open orders, fetch order history, retrieve single orders, cancel/amend orders.
PositionsView open positions, set/edit stop‑loss and take‑profit, reverse or partially close positions, fetch position history.
FeesRetrieve your trading fee history.

Checkout our Quickstart guide to follow a complete trading workflow 👇


What’s Next