MEXC · Example Payload

Mexc Futures Place Order Example

Example of placing a perpetual futures limit order on the MEXC Futures REST API

CryptocurrencyExchangeTradingFuturesMarket DataFinanceBlockchain

Mexc Futures Place Order Example is an example object payload from MEXC, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Place a Futures Order",
  "description": "Example of placing a perpetual futures limit order on the MEXC Futures REST API",
  "request": {
    "method": "POST",
    "url": "https://contract.mexc.com/api/v1/private/order/submit",
    "headers": {
      "ApiKey": "YOUR_API_KEY",
      "Request-Time": "1718000000000",
      "Signature": "YOUR_HMAC_SHA256_SIGNATURE",
      "Content-Type": "application/json"
    },
    "body": {
      "symbol": "BTC_USDT",
      "price": 60000.0,
      "vol": 1,
      "side": 1,
      "type": 1,
      "openType": 1,
      "leverage": 10
    }
  },
  "response": {
    "status": 200,
    "body": {
      "success": true,
      "code": 0,
      "data": "C02__468615423963070465"
    }
  }
}