MEXC Futures REST API

The MEXC Futures REST API provides access to MEXC's perpetual futures trading platform. Public endpoints expose contract details, order book depth, index prices, fair prices, funding rates, k-line data, and transaction history without authentication. Authenticated endpoints support account asset management, position management, order placement and cancellation, leverage and margin adjustments, trigger orders, and stop-limit orders. Authentication uses HMAC SHA256 with the ApiKey, Request-Time, and Signature headers. Standard rate limits apply at 20 requests per 2-second window. API Futures trading is subject to a separate fee schedule: maker 0.06% and taker 0.08% as of June 1, 2026.

OpenAPI Specification

mexc-futures-rest-api-openapi.json Raw ↑
{
  "openapi": "3.0.3",
  "info": {
    "title": "MEXC Futures REST API v1",
    "description": "MEXC Futures REST API providing access to perpetual futures trading including order management, position management, and market data.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://contract.mexc.com"
    }
  ],
  "paths": {
    "/api/v1/contract/ping": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "Ping",
        "operationId": "ping",
        "description": "Ping",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/detail": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "ContractDetail",
        "operationId": "contractdetail",
        "description": "ContractDetail",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/support_currencies": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "DepthBySymbol",
        "operationId": "depthbysymbol",
        "description": "DepthBySymbol",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/depth_commits/BTC_USDT/20": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "FundingRateBySymbol",
        "operationId": "fundingratebysymbol",
        "description": "FundingRateBySymbol",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/kline/BTC_USDT": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "KlineBySymbol",
        "operationId": "klinebysymbol",
        "description": "KlineBySymbol",
        "parameters": [
          {
            "name": "interval",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "start",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "end",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/kline/index_price/BTC_USDT": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "IndexPriceKlineBySymbol",
        "operationId": "indexpriceklinebysymbol",
        "description": "IndexPriceKlineBySymbol",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/kline/fair_price/BTC_USDT": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "FairPriceKlineBySymbol",
        "operationId": "fairpriceklinebysymbol",
        "description": "FairPriceKlineBySymbol",
        "parameters": [
          {
            "name": "interval",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "start",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "end",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/deals/BTC_USDT": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "DealsBySymbol",
        "operationId": "dealsbysymbol",
        "description": "DealsBySymbol",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/ticker": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "Ticker",
        "operationId": "ticker",
        "description": "Ticker",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/risk_reverse": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "RiskReverse",
        "operationId": "riskreverse",
        "description": "RiskReverse",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/risk_reverse/history": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "RiskReverseHistory",
        "operationId": "riskreversehistory",
        "description": "RiskReverseHistory",
        "parameters": [
          {
            "name": "symbol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_num",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/contract/funding_rate/history": {
      "get": {
        "tags": [
          "Quote"
        ],
        "summary": "FundingRateHistory",
        "operationId": "fundingratehistory",
        "description": "FundingRateHistory",
        "parameters": [
          {
            "name": "symbol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_num",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/account/assets": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "Assets",
        "operationId": "assets",
        "description": "Assets",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/account/asset/USDT": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "AssetByCurrency",
        "operationId": "assetbycurrency",
        "description": "AssetByCurrency",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/account/transfer_record": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "TransferRecord",
        "operationId": "transferrecord",
        "description": "TransferRecord",
        "parameters": [
          {
            "name": "page_num",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/list/history_positions": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "FundingRecords",
        "operationId": "fundingrecords",
        "description": "FundingRecords",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/open_orders/": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "OpenOrders",
        "operationId": "openorders",
        "description": "OpenOrders",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/close_orders": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "open orders",
        "operationId": "open_orders",
        "description": "open orders",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/list/history_orders": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "HistoryOrders",
        "operationId": "historyorders",
        "description": "HistoryOrders",
        "parameters": [
          {
            "name": "page_num",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "symbol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/external/BTC_USDT/_m_b0ecfa1ea7a248be84f5a08cc5f98aa5": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "ExternalByExternalOid",
        "operationId": "externalbyexternaloid",
        "description": "ExternalByExternalOid",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/get/218699511659380224": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "QueryOrderById",
        "operationId": "queryorderbyid",
        "description": "QueryOrderById",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/batch_query": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "BatchQueryById",
        "operationId": "batchquerybyid",
        "description": "BatchQueryById",
        "parameters": [
          {
            "name": "order_ids",
            "in": "query",
            "description": "order number array\uff0ccan be separated by \",\" for example :order_ids = 1,2,3(maximum 50 orders):",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/deal_details/2543756756876": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "DealDetails",
        "operationId": "dealdetails",
        "description": "DealDetails",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/list/order_deals/v3": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "orderDeals",
        "operationId": "orderdeals",
        "description": "orderDeals",
        "parameters": [
          {
            "name": "page_num",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "symbol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/planorder/list/orders": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "PlanOrder",
        "operationId": "planorder",
        "description": "PlanOrder",
        "parameters": [
          {
            "name": "page_num",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/planorder/change_price": {
      "post": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "ChangePlanOrderStopOrder",
        "operationId": "changeplanorderstoporder",
        "description": "ChangePlanOrderStopOrder",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/stoporder/open_orders": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "StopOrderOpenOrders",
        "operationId": "stoporderopenorders",
        "description": "StopOrderOpenOrders",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/stoporder/list/orders": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "StoporderOpenOrder",
        "operationId": "stoporderopenorder",
        "description": "StoporderOpenOrder",
        "parameters": [
          {
            "name": "page_num",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/account/risk_limit": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "RiskLimit",
        "operationId": "risklimit",
        "description": "RiskLimit",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/account/tiered_fee_rate": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "TieredFeeRate",
        "operationId": "tieredfeerate",
        "description": "TieredFeeRate",
        "parameters": [
          {
            "name": "symbol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/change_margin": {
      "post": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "ChangeMargin",
        "operationId": "changemargin",
        "description": "ChangeMargin",
        "parameters": [
          {
            "name": "positionId",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "amount",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "type",
            "in": "query",
            "description": "type ,ADD: increase,SUB: decrease",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/change_auto_add_im": {
      "post": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "ChangeAutoAddIm",
        "operationId": "changeautoaddim",
        "description": "ChangeAutoAddIm",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/leverage": {
      "get": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "Open order total count",
        "operationId": "open_order_total_count",
        "description": "Open order total count",
        "parameters": [
          {
            "name": "symbol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/change_leverage": {
      "post": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "ChangeLeverage",
        "operationId": "changeleverage",
        "description": "ChangeLeverage",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/change_position_mode": {
      "post": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "ChangePositionMode",
        "operationId": "changepositionmode",
        "description": "ChangePositionMode",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/reverse": {
      "post": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "PositionReverse",
        "operationId": "positionreverse",
        "description": "PositionReverse",
        "parameters": [
          {
            "name": "symbol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "positionId",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "vol",
            "in": "query",
            "description": "",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/position/close_all": {
      "post": {
        "tags": [
          "Accounts and Transactions"
        ],
        "summary": "PositionCloseAll",
        "operationId": "positioncloseall",
        "description": "PositionCloseAll",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ]
      }
    },
    "/api/v1/private/order/create": {
      "post": {
        "tags": [
   

# --- truncated at 32 KB (58 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mexc/refs/heads/main/openapi/mexc-futures-rest-api-openapi.json