From 118c34b9907ca253f37769eeb09bf8e08bb85942 Mon Sep 17 00:00:00 2001 From: Dobromir Popov Date: Thu, 3 Jul 2025 00:56:02 +0300 Subject: [PATCH] mexc API failed, working on futures API as it what i we need anyway --- NN/exchanges/mexc_interface.py | 998 +- config.yaml | 2 +- core/mexc_webclient/auto_browser.py | 25 +- core/trading_executor.py | 59 +- mexc_cookies_20250703_003625.json | 29 + mexc_requests_20250703_003625.json | 16883 ++++++++++++++++++++++++++ tests/test_mexc_account_private.py | 64 + tests/test_mexc_account_privte.py | 24 +- 8 files changed, 17370 insertions(+), 714 deletions(-) create mode 100644 mexc_cookies_20250703_003625.json create mode 100644 mexc_requests_20250703_003625.json create mode 100644 tests/test_mexc_account_private.py diff --git a/NN/exchanges/mexc_interface.py b/NN/exchanges/mexc_interface.py index 59a41c0..9c4cd94 100644 --- a/NN/exchanges/mexc_interface.py +++ b/NN/exchanges/mexc_interface.py @@ -1,796 +1,410 @@ import logging import time -import asyncio -import json -import websockets -from typing import Dict, Any, List, Optional, Callable +from typing import Dict, Any, List, Optional import requests import hmac import hashlib -from urllib.parse import urlencode -from datetime import datetime -from threading import Thread, Lock -from collections import deque +from urllib.parse import urlencode, quote_plus from .exchange_interface import ExchangeInterface logger = logging.getLogger(__name__) + +# https://github.com/mexcdevelop/mexc-api-postman/blob/main/MEXC%20V3.postman_collection.json +# MEXC V3.postman_collection.json + class MEXCInterface(ExchangeInterface): - """MEXC Exchange API Interface with WebSocket support""" + """MEXC Exchange API Interface""" - def __init__(self, api_key: str = None, api_secret: str = None, test_mode: bool = True): + def __init__(self, api_key: str = "", api_secret: str = "", test_mode: bool = True, trading_mode: str = 'simulation'): """Initialize MEXC exchange interface. Args: api_key: MEXC API key api_secret: MEXC API secret test_mode: If True, use test/sandbox environment (Note: MEXC doesn't have a true sandbox) + trading_mode: 'simulation', 'testnet', or 'live'. Determines API endpoints used. """ super().__init__(api_key, api_secret, test_mode) - self.base_url = "https://api.mexc.com" + + self.trading_mode = trading_mode # Store the trading mode + + # MEXC API Base URLs + self.base_url = "https://api.mexc.com" # Live API URL + if self.trading_mode == 'testnet': + # Note: MEXC does not have a separate testnet for spot trading. + # We use the live API for 'testnet' mode and rely on 'simulation' for true dry-runs. + logger.warning("MEXC does not have a separate testnet for spot trading. Using live API for 'testnet' mode.") + self.api_version = "api/v3" - - # WebSocket configuration - self.ws_base_url = "wss://wbs.mexc.com/ws" - self.websocket_tasks = {} - self.is_streaming = False - self.stream_lock = Lock() - self.tick_callbacks = [] - self.ticker_callbacks = [] - - # Data buffers for reliability - self.recent_ticks = {} # {symbol: deque} - self.current_prices = {} # {symbol: price} - self.buffer_size = 1000 - - def add_tick_callback(self, callback: Callable[[Dict[str, Any]], None]): - """Add callback for real-time tick data""" - self.tick_callbacks.append(callback) - logger.info(f"Added MEXC tick callback: {len(self.tick_callbacks)} total") - - def add_ticker_callback(self, callback: Callable[[Dict[str, Any]], None]): - """Add callback for real-time ticker data""" - self.ticker_callbacks.append(callback) - logger.info(f"Added MEXC ticker callback: {len(self.ticker_callbacks)} total") - - def _notify_tick_callbacks(self, tick_data: Dict[str, Any]): - """Notify all tick callbacks with new data""" - for callback in self.tick_callbacks: - try: - callback(tick_data) - except Exception as e: - logger.error(f"Error in MEXC tick callback: {e}") - - def _notify_ticker_callbacks(self, ticker_data: Dict[str, Any]): - """Notify all ticker callbacks with new data""" - for callback in self.ticker_callbacks: - try: - callback(ticker_data) - except Exception as e: - logger.error(f"Error in MEXC ticker callback: {e}") - - async def start_websocket_streams(self, symbols: List[str], stream_types: List[str] = None): - """Start WebSocket streams for multiple symbols - - Args: - symbols: List of symbols in 'BTC/USDT' format - stream_types: List of stream types ['trade', 'ticker', 'depth'] (default: ['trade', 'ticker']) - """ - if stream_types is None: - stream_types = ['trade', 'ticker'] - - self.is_streaming = True - logger.info(f"Starting MEXC WebSocket streams for {symbols} with types {stream_types}") - - # Initialize buffers for symbols - for symbol in symbols: - mexc_symbol = symbol.replace('/', '').upper() - self.recent_ticks[mexc_symbol] = deque(maxlen=self.buffer_size) - - # Start streams for each symbol and stream type combination - for symbol in symbols: - for stream_type in stream_types: - task = asyncio.create_task(self._websocket_stream(symbol, stream_type)) - task_key = f"{symbol}_{stream_type}" - self.websocket_tasks[task_key] = task - - async def stop_websocket_streams(self): - """Stop all WebSocket streams""" - logger.info("Stopping MEXC WebSocket streams") - self.is_streaming = False - - # Cancel all tasks - for task_key, task in self.websocket_tasks.items(): - if not task.done(): - task.cancel() - try: - await task - except asyncio.CancelledError: - pass - - self.websocket_tasks.clear() - - async def _websocket_stream(self, symbol: str, stream_type: str): - """Individual WebSocket stream for a symbol and stream type""" - mexc_symbol = symbol.replace('/', '').upper() - - # MEXC WebSocket stream naming convention - if stream_type == 'trade': - stream_name = f"{mexc_symbol}@trade" - elif stream_type == 'ticker': - stream_name = f"{mexc_symbol}@ticker" - elif stream_type == 'depth': - stream_name = f"{mexc_symbol}@depth" - else: - logger.error(f"Unsupported MEXC stream type: {stream_type}") - return - - url = f"{self.ws_base_url}" - - while self.is_streaming: - try: - logger.info(f"Connecting to MEXC WebSocket: {stream_name}") - - async with websockets.connect(url) as websocket: - # Subscribe to the stream - subscribe_msg = { - "method": "SUBSCRIPTION", - "params": [stream_name] - } - await websocket.send(json.dumps(subscribe_msg)) - logger.info(f"Subscribed to MEXC stream: {stream_name}") - - async for message in websocket: - if not self.is_streaming: - break - - try: - await self._process_websocket_message(mexc_symbol, stream_type, message) - except Exception as e: - logger.warning(f"Error processing MEXC message for {stream_name}: {e}") - - except Exception as e: - logger.error(f"MEXC WebSocket error for {stream_name}: {e}") - - if self.is_streaming: - logger.info(f"Reconnecting MEXC WebSocket for {stream_name} in 5 seconds...") - await asyncio.sleep(5) - - async def _process_websocket_message(self, symbol: str, stream_type: str, message: str): - """Process incoming WebSocket message""" - try: - data = json.loads(message) - - # Handle subscription confirmation - if data.get('id') is not None: - logger.info(f"MEXC WebSocket subscription confirmed for {symbol} {stream_type}") - return - - # Process data based on stream type - if stream_type == 'trade' and 'data' in data: - await self._process_trade_data(symbol, data['data']) - elif stream_type == 'ticker' and 'data' in data: - await self._process_ticker_data(symbol, data['data']) - elif stream_type == 'depth' and 'data' in data: - await self._process_depth_data(symbol, data['data']) - - except Exception as e: - logger.error(f"Error processing MEXC WebSocket message: {e}") - - async def _process_trade_data(self, symbol: str, trade_data: Dict[str, Any]): - """Process trade data from WebSocket""" - try: - # MEXC trade data format - price = float(trade_data.get('p', 0)) - quantity = float(trade_data.get('q', 0)) - timestamp = datetime.fromtimestamp(int(trade_data.get('t', 0)) / 1000) - is_buyer_maker = trade_data.get('m', False) - trade_id = trade_data.get('i', '') - - # Create standardized tick - tick = { - 'symbol': symbol, - 'timestamp': timestamp, - 'price': price, - 'volume': price * quantity, # Volume in quote currency - 'quantity': quantity, - 'side': 'sell' if is_buyer_maker else 'buy', - 'trade_id': str(trade_id), - 'is_buyer_maker': is_buyer_maker, - 'exchange': 'MEXC', - 'raw_data': trade_data - } - - # Update buffers - self.recent_ticks[symbol].append(tick) - self.current_prices[symbol] = price - - # Notify callbacks - self._notify_tick_callbacks(tick) - - except Exception as e: - logger.error(f"Error processing MEXC trade data: {e}") - - async def _process_ticker_data(self, symbol: str, ticker_data: Dict[str, Any]): - """Process ticker data from WebSocket""" - try: - # MEXC ticker data format - ticker = { - 'symbol': symbol, - 'timestamp': datetime.now(), - 'price': float(ticker_data.get('c', 0)), # Current price - 'bid': float(ticker_data.get('b', 0)), # Best bid - 'ask': float(ticker_data.get('a', 0)), # Best ask - 'volume': float(ticker_data.get('v', 0)), # Volume - 'high': float(ticker_data.get('h', 0)), # 24h high - 'low': float(ticker_data.get('l', 0)), # 24h low - 'change': float(ticker_data.get('P', 0)), # Price change % - 'exchange': 'MEXC', - 'raw_data': ticker_data - } - - # Update current price - self.current_prices[symbol] = ticker['price'] - - # Notify callbacks - self._notify_ticker_callbacks(ticker) - - except Exception as e: - logger.error(f"Error processing MEXC ticker data: {e}") - - async def _process_depth_data(self, symbol: str, depth_data: Dict[str, Any]): - """Process order book depth data from WebSocket""" - try: - # Process depth data if needed for future features - logger.debug(f"MEXC depth data received for {symbol}") - except Exception as e: - logger.error(f"Error processing MEXC depth data: {e}") - - def get_current_price(self, symbol: str) -> Optional[float]: - """Get current price for a symbol from WebSocket data or REST API fallback""" - mexc_symbol = symbol.replace('/', '').upper() - - # Try from WebSocket data first - if mexc_symbol in self.current_prices: - return self.current_prices[mexc_symbol] - - # Fallback to REST API - try: - ticker = self.get_ticker(symbol) - if ticker and 'price' in ticker: - return float(ticker['price']) - except Exception as e: - logger.warning(f"Failed to get current price for {symbol} from MEXC: {e}") - - return None - - def get_recent_ticks(self, symbol: str, count: int = 100) -> List[Dict[str, Any]]: - """Get recent ticks for a symbol""" - mexc_symbol = symbol.replace('/', '').upper() - if mexc_symbol in self.recent_ticks: - return list(self.recent_ticks[mexc_symbol])[-count:] - return [] + self.recv_window = 5000 # 5 seconds window for request validity + + # Session for HTTP requests + self.session = requests.Session() + + logger.info(f"MEXCInterface initialized in {self.trading_mode} mode. Ensure correct API endpoints are being used.") def connect(self) -> bool: - """Connect to MEXC API.""" + """Test connection to MEXC API by fetching account info.""" if not self.api_key or not self.api_secret: - logger.warning("MEXC API credentials not provided. Running in read-only mode.") - try: - # Test public API connection by getting server time (ping) - self.get_server_time() - logger.info("Successfully connected to MEXC API in read-only mode") - return True - except Exception as e: - logger.error(f"Failed to connect to MEXC API in read-only mode: {str(e)}") + logger.error("MEXC API key or secret not set. Cannot connect.") return False + # Test connection by making a small, authenticated request try: - # Test connection by getting account info - self.get_account_info() - logger.info("Successfully connected to MEXC API with authentication") + account_info = self.get_account_info() + if account_info: + logger.info("Successfully connected to MEXC API and retrieved account info.") return True + else: + logger.error("Failed to connect to MEXC API: Could not retrieve account info.") + return False except Exception as e: - logger.error(f"Failed to connect to MEXC API: {str(e)}") + logger.error(f"Exception during MEXC API connection test: {e}") return False - def _generate_signature(self, params: Dict[str, Any]) -> str: - """Generate HMAC SHA256 signature for MEXC API. - - The signature is generated by creating a query string from all parameters - (excluding the signature itself), then using HMAC SHA256 with the secret key. - """ - if not self.api_secret: - raise ValueError("API secret is required for generating signatures") - - # Sort parameters by key to ensure consistent ordering - # This is crucial for MEXC API signature validation - sorted_params = sorted(params.items()) - - # Create query string - query_string = '&'.join([f"{key}={value}" for key, value in sorted_params]) + def _format_spot_symbol(self, symbol: str) -> str: + """Formats a symbol to MEXC spot API standard (e.g., 'ETH/USDT' -> 'ETHUSDT').""" + if '/' in symbol: + base, quote = symbol.split('/') + return f"{base.upper()}{quote.upper()}" + return symbol.upper() + + def _format_futures_symbol(self, symbol: str) -> str: + """Formats a symbol to MEXC futures API standard (e.g., 'ETH/USDT' -> 'ETH_USDT').""" + # This method is included for completeness but should not be used for spot trading + return symbol.replace('/', '_').upper() + + def _generate_signature(self, timestamp: str, method: str, endpoint: str, params: Dict[str, Any]) -> str: + """Generate signature for private API calls""" + # Build the string to sign + sign_str = self.api_key + timestamp + if params: + # Append all parameters sorted by key, without URL encoding for signature + query_str = "&".join([f"{k}={v}" for k, v in sorted(params.items()) if k != 'signature']) + if query_str: + sign_str += query_str + logger.debug(f"Signature string: {sign_str}") # Generate HMAC SHA256 signature signature = hmac.new( self.api_secret.encode('utf-8'), - query_string.encode('utf-8'), + sign_str.encode('utf-8'), hashlib.sha256 ).hexdigest() - - logger.debug(f"MEXC signature query string: {query_string}") - logger.debug(f"MEXC signature: {signature}") - return signature - def _send_public_request(self, method: str, endpoint: str, params: Dict[str, Any] = None) -> Dict[str, Any]: - """Send public request to MEXC API.""" + def _send_public_request(self, method: str, endpoint: str, params: Optional[Dict[str, Any]] = None) -> Dict[str, Any]: + """Send a public API request to MEXC.""" + if params is None: + params = {} + url = f"{self.base_url}/{self.api_version}/{endpoint}" - + + headers = {'Accept': 'application/json'} + try: - if method.upper() == 'GET': - response = requests.get(url, params=params) - else: - response = requests.post(url, json=params) - - response.raise_for_status() + response = requests.request(method, url, params=params, headers=headers, timeout=10) + response.raise_for_status() # Raise HTTPError for bad responses (4xx or 5xx) return response.json() + except requests.exceptions.HTTPError as http_err: + logger.error(f"HTTP error in public request to {endpoint}: {response.status_code} {response.reason}") + logger.error(f"Response content: {response.text}") + return {} + except requests.exceptions.ConnectionError as conn_err: + logger.error(f"Connection error in public request to {endpoint}: {conn_err}") + return {} + except requests.exceptions.Timeout as timeout_err: + logger.error(f"Timeout error in public request to {endpoint}: {timeout_err}") + return {} except Exception as e: - logger.error(f"Error in public request to {endpoint}: {str(e)}") - raise - - def _send_private_request(self, method: str, endpoint: str, params: Dict[str, Any] = None) -> Dict[str, Any]: - """Send private/authenticated request to MEXC API.""" - if not self.api_key or not self.api_secret: - raise ValueError("API key and secret are required for private requests") - + logger.error(f"Error in public request to {endpoint}: {e}") + return {} + + def _send_private_request(self, method: str, endpoint: str, params: Dict[str, Any] = None) -> Optional[Dict[str, Any]]: + """Send a private request to the exchange with proper signature""" if params is None: params = {} - # Add timestamp using server time for better synchronization - try: - server_time_response = self._send_public_request('GET', 'time') - server_time = server_time_response['serverTime'] - params['timestamp'] = server_time - except Exception as e: - logger.warning(f"Failed to get server time, using local time: {e}") - params['timestamp'] = int(time.time() * 1000) - - # Generate signature using the exact format from MEXC documentation - # For order placement, the query string should be in this specific order: - # symbol=X&side=X&type=X&quantity=X×tamp=X (for market orders) - # symbol=X&side=X&type=X&quantity=X&price=X&timeInForce=X×tamp=X (for limit orders) - - if endpoint == 'order' and method == 'POST': - # Special handling for order placement - use exact MEXC documentation format - query_parts = [] - - # Required parameters in exact order per MEXC docs - if 'symbol' in params: - query_parts.append(f"symbol={params['symbol']}") - if 'side' in params: - query_parts.append(f"side={params['side']}") - if 'type' in params: - query_parts.append(f"type={params['type']}") - if 'quantity' in params: - query_parts.append(f"quantity={params['quantity']}") - if 'price' in params: - query_parts.append(f"price={params['price']}") - if 'timeInForce' in params: - query_parts.append(f"timeInForce={params['timeInForce']}") - if 'timestamp' in params: - query_parts.append(f"timestamp={params['timestamp']}") - - query_string = '&'.join(query_parts) - - else: - # For other endpoints, use sorted parameters (original working method) - sorted_params = sorted(params.items()) - query_string = urlencode(sorted_params) - - # Generate signature - signature = hmac.new( - self.api_secret.encode('utf-8'), - query_string.encode('utf-8'), - hashlib.sha256 - ).hexdigest() - - # Add signature to parameters + timestamp = str(int(time.time() * 1000)) + # Add timestamp and recvWindow to params for signature and request + params['timestamp'] = timestamp + params['recvWindow'] = self.recv_window + signature = self._generate_signature(timestamp, method, endpoint, params) params['signature'] = signature - # Prepare request - url = f"{self.base_url}/api/v3/{endpoint}" headers = { - 'X-MEXC-APIKEY': self.api_key + "X-MEXC-APIKEY": self.api_key, + "Request-Time": timestamp } - # Do not add Content-Type - let requests handle it automatically - - # Log request details for debugging - logger.debug(f"MEXC {method} request to {endpoint}") - logger.debug(f"Query string for signature: {query_string}") - logger.debug(f"Signature: {signature}") - + # Ensure endpoint does not start with a slash to avoid double slashes + if endpoint.startswith('/'): + endpoint = endpoint.lstrip('/') + url = f"{self.base_url}/{endpoint}" try: - if method == 'GET': - response = requests.get(url, params=params, headers=headers, timeout=30) - elif method == 'POST': - response = requests.post(url, params=params, headers=headers, timeout=30) - elif method == 'DELETE': - response = requests.delete(url, params=params, headers=headers, timeout=30) + if method.upper() == "GET": + response = self.session.get(url, headers=headers, params=params, timeout=10) + elif method.upper() == "POST": + headers["Content-Type"] = "application/x-www-form-urlencoded" + response = self.session.post(url, headers=headers, data=params, timeout=10) else: - raise ValueError(f"Unsupported HTTP method: {method}") + logger.error(f"Unsupported method: {method}") + return None - logger.debug(f"MEXC API response status: {response.status_code}") - - if response.status_code == 200: - return response.json() + response.raise_for_status() + data = response.json() + if data.get('success', False): + return data.get('data', data) else: - logger.error(f"Error in private request to {endpoint}: {response.status_code} {response.reason}") - logger.error(f"Response status: {response.status_code}") - logger.error(f"Response content: {response.text}") - response.raise_for_status() - - except requests.exceptions.RequestException as e: - logger.error(f"Network error in private request to {endpoint}: {str(e)}") - raise + logger.error(f"API error: Status Code: {response.status_code}, Response: {response.text}") + return None + except requests.exceptions.HTTPError as http_err: + logger.error(f"HTTP error for {endpoint}: Status Code: {response.status_code}, Response: {response.text}") + logger.error(f"HTTP error details: {http_err}") + return None except Exception as e: - logger.error(f"Unexpected error in private request to {endpoint}: {str(e)}") - raise - - def get_server_time(self) -> Dict[str, Any]: - """Get server time (ping test).""" - return self._send_public_request('GET', 'time') - - def ping(self) -> Dict[str, Any]: - """Test connectivity to the Rest API.""" - return self._send_public_request('GET', 'ping') + logger.error(f"Request error for {endpoint}: {e}") + return None def get_account_info(self) -> Dict[str, Any]: - """Get account information.""" - params = {} # recvWindow will be set by _send_private_request - return self._send_private_request('GET', 'account', params) + """Get account information""" + endpoint = "/api/v3/account" + result = self._send_private_request("GET", endpoint, {}) + return result if result is not None else {} def get_balance(self, asset: str) -> float: - """Get balance of a specific asset. - - Args: - asset: Asset symbol (e.g., 'BTC', 'USDT') - - Returns: - float: Available balance of the asset - """ - try: - params = {} # recvWindow will be set by _send_private_request - account_info = self._send_private_request('GET', 'account', params) - balances = account_info.get('balances', []) - - for balance in balances: - if balance['asset'] == asset: - return float(balance['free']) - - # Asset not found - return 0.0 - except Exception as e: - logger.error(f"Error getting balance for {asset}: {str(e)}") + """Get available balance for a specific asset.""" + account_info = self.get_account_info() + if account_info and 'balances' in account_info: + for balance in account_info['balances']: + if balance.get('asset') == asset.upper(): + return float(balance.get('free', 0.0)) + logger.warning(f"Could not retrieve free balance for {asset}") return 0.0 - def get_ticker(self, symbol: str) -> Dict[str, Any]: - """Get current ticker data for a symbol. + def get_ticker(self, symbol: str) -> Optional[Dict[str, Any]]: + """Get ticker information for a symbol.""" + formatted_symbol = self._format_spot_symbol(symbol) + endpoint = "ticker/24hr" + params = {'symbol': formatted_symbol} - Args: - symbol: Trading symbol (e.g., 'BTC/USDT') - - Returns: - dict: Ticker data including price information - """ - mexc_symbol = symbol.replace('/', '') - - # Use official MEXC API endpoints from documentation - endpoints_to_try = [ - ('ticker/price', {'symbol': mexc_symbol}), # Symbol Price Ticker - ('ticker/24hr', {'symbol': mexc_symbol}), # 24hr Ticker Price Change Statistics - ('ticker/bookTicker', {'symbol': mexc_symbol}), # Symbol Order Book Ticker - ] - - for endpoint, params in endpoints_to_try: - try: - logger.debug(f"Trying MEXC endpoint: {endpoint} for {mexc_symbol}") response = self._send_public_request('GET', endpoint, params) - if not response: - continue - - # Handle the response based on structure + if response: + # MEXC ticker returns a dictionary if single symbol, list if all symbols if isinstance(response, dict): - ticker = response + ticker_data = response elif isinstance(response, list) and len(response) > 0: - # Find the specific symbol in list response - ticker = None - for t in response: - if t.get('symbol') == mexc_symbol: - ticker = t - break - if ticker is None: - continue + # If the response is a list, try to find the specific symbol + found_ticker = next((item for item in response if item.get('symbol') == formatted_symbol), None) + if found_ticker: + ticker_data = found_ticker else: - continue - - # Convert to standardized format based on MEXC API response - current_time = int(time.time() * 1000) - - # Handle different response formats from different endpoints - if 'price' in ticker: - # ticker/price endpoint - price = float(ticker['price']) - result = { - 'symbol': symbol, - 'bid': price, # Use price as fallback - 'ask': price, # Use price as fallback - 'last': price, - 'volume': 0, # Not available in price endpoint - 'timestamp': current_time - } - elif 'lastPrice' in ticker: - # ticker/24hr endpoint - result = { - 'symbol': symbol, - 'bid': float(ticker.get('bidPrice', ticker.get('lastPrice', 0))), - 'ask': float(ticker.get('askPrice', ticker.get('lastPrice', 0))), - 'last': float(ticker.get('lastPrice', 0)), - 'volume': float(ticker.get('volume', ticker.get('quoteVolume', 0))), - 'timestamp': int(ticker.get('closeTime', current_time)) - } - elif 'bidPrice' in ticker: - # ticker/bookTicker endpoint - result = { - 'symbol': symbol, - 'bid': float(ticker.get('bidPrice', 0)), - 'ask': float(ticker.get('askPrice', 0)), - 'last': float(ticker.get('bidPrice', 0)), # Use bid as fallback for last - 'volume': 0, # Not available in book ticker - 'timestamp': current_time - } - else: - continue - - # Validate we have a valid price - if result['last'] > 0: - logger.info(f"MEXC: Got ticker from {endpoint} for {symbol}: ${result['last']:.2f}") - return result - - except Exception as e: - logger.warning(f"MEXC endpoint {endpoint} failed for {symbol}: {e}") - continue - - # All endpoints failed - logger.error(f"❌ MEXC: All ticker endpoints failed for {symbol}") + logger.error(f"Ticker data for {formatted_symbol} not found in response list.") + return None + else: + logger.error(f"Unexpected ticker response format: {response}") + return None + + # Extract relevant info and format for universal use + last_price = float(ticker_data.get('lastPrice', 0)) + bid_price = float(ticker_data.get('bidPrice', 0)) + ask_price = float(ticker_data.get('askPrice', 0)) + volume = float(ticker_data.get('volume', 0)) # Base asset volume + + # Determine price change and percent change + price_change = float(ticker_data.get('priceChange', 0)) + price_change_percent = float(ticker_data.get('priceChangePercent', 0)) + + logger.info(f"MEXC: Got ticker from {endpoint} for {symbol}: ${last_price:.2f}") + + return { + 'symbol': formatted_symbol, + 'last': last_price, + 'bid': bid_price, + 'ask': ask_price, + 'volume': volume, + 'high': float(ticker_data.get('highPrice', 0)), + 'low': float(ticker_data.get('lowPrice', 0)), + 'change': price_change_percent, # This is usually priceChangePercent + 'exchange': 'MEXC', + 'raw_data': ticker_data + } + logger.error(f"Failed to get ticker for {symbol}") return None - def place_order(self, symbol: str, side: str, order_type: str, - quantity: float, price: float = None) -> Dict[str, Any]: - """Place an order on the exchange. + def place_order(self, symbol: str, side: str, order_type: str, quantity: float, price: Optional[float] = None) -> Dict[str, Any]: + """Place a new order on MEXC.""" + formatted_symbol = self._format_spot_symbol(symbol) + endpoint = "order" - Args: - symbol: Trading symbol (e.g., 'BTC/USDT') - side: Order side ('BUY' or 'SELL') - order_type: Order type ('MARKET', 'LIMIT', etc.) - quantity: Order quantity - price: Order price (for limit orders) - - Returns: - dict: Order information including order ID - """ - mexc_symbol = symbol.replace('/', '') - - # Prepare order parameters according to MEXC API specification - # Parameters must be in specific order for proper signature generation - params = { - 'symbol': mexc_symbol, + params: Dict[str, Any] = { + 'symbol': formatted_symbol, 'side': side.upper(), - 'type': order_type.upper() + 'type': order_type.upper(), + 'quantity': str(quantity) # Quantity must be a string } + if price is not None: + params['price'] = str(price) # Price must be a string for limit orders + + logger.info(f"MEXC: Placing {side.upper()} {order_type.upper()} order for {quantity} {formatted_symbol} at price {price}") - # Format quantity properly - respect MEXC precision requirements - # ETH has 5 decimal places max on MEXC, most other symbols have 6-8 - if 'ETH' in mexc_symbol: - # ETH pairs: 5 decimal places maximum - quantity_str = f"{quantity:.5f}".rstrip('0').rstrip('.') - else: - # Other pairs: 6 decimal places (conservative) - quantity_str = f"{quantity:.6f}".rstrip('0').rstrip('.') - params['quantity'] = quantity_str - - # Add price and timeInForce for limit orders - if order_type.upper() == 'LIMIT': - if price is None: - raise ValueError("Price is required for LIMIT orders") - # Format price properly - respect MEXC precision requirements - # USDC pairs typically have 2 decimal places, USDT pairs may have more - if 'USDC' in mexc_symbol: - price_str = f"{price:.2f}".rstrip('0').rstrip('.') - else: - price_str = f"{price:.6f}".rstrip('0').rstrip('.') - params['price'] = price_str - params['timeInForce'] = 'GTC' # Good Till Cancelled - + # For market orders, some parameters might be optional or handled differently. + # Check MEXC API docs for market order specifics (e.g., quoteOrderQty for buy market orders) + if order_type.upper() == 'MARKET' and side.upper() == 'BUY': + # If it's a market buy order, MEXC often expects quoteOrderQty instead of quantity + # Assuming quantity here refers to the base asset, if quoteOrderQty is needed, adjust. + # For now, we will stick to quantity and let MEXC handle the conversion if possible + pass # No specific change needed based on the current params structure + try: - logger.info(f"MEXC: Placing {side} {order_type} order for {symbol}: {quantity} @ {price}") - order_result = self._send_private_request('POST', 'order', params) - logger.info(f"MEXC: Order placed successfully: {order_result.get('orderId', 'N/A')}") + # MEXC API endpoint for placing orders is /api/v3/order (POST) + order_result = self._send_private_request('POST', endpoint, params) + if order_result: + logger.info(f"MEXC: Order placed successfully: {order_result}") return order_result + else: + logger.error(f"MEXC: Error placing order: {order_result}") + return {} except Exception as e: - logger.error(f"MEXC: Error placing {side} {order_type} order for {symbol}: {str(e)}") - raise - - def cancel_order(self, symbol: str, order_id: str) -> bool: - """Cancel an existing order. - - Args: - symbol: Trading symbol (e.g., 'BTC/USDT') - order_id: ID of the order to cancel - - Returns: - bool: True if cancellation successful, False otherwise - """ - mexc_symbol = symbol.replace('/', '') + logger.error(f"MEXC: Exception placing order: {e}") + return {} + + def cancel_order(self, symbol: str, order_id: str) -> Dict[str, Any]: + """Cancel an existing order on MEXC.""" + formatted_symbol = self._format_spot_symbol(symbol) + endpoint = "order" params = { - 'symbol': mexc_symbol, + 'symbol': formatted_symbol, 'orderId': order_id } - + logger.info(f"MEXC: Cancelling order {order_id} for {formatted_symbol}") try: - cancel_result = self._send_private_request('DELETE', 'order', params) - return True + # MEXC API endpoint for cancelling orders is /api/v3/order (DELETE) + cancel_result = self._send_private_request('DELETE', endpoint, params) + if cancel_result: + logger.info(f"MEXC: Order cancelled successfully: {cancel_result}") + return cancel_result + else: + logger.error(f"MEXC: Error cancelling order: {cancel_result}") + return {} except Exception as e: - logger.error(f"Error cancelling order {order_id} for {symbol}: {str(e)}") - return False + logger.error(f"MEXC: Exception cancelling order: {e}") + return {} def get_order_status(self, symbol: str, order_id: str) -> Dict[str, Any]: - """Get status of an existing order. - - Args: - symbol: Trading symbol (e.g., 'BTC/USDT') - order_id: ID of the order - - Returns: - dict: Order status information - """ - mexc_symbol = symbol.replace('/', '') + """Get the status of an order on MEXC.""" + formatted_symbol = self._format_spot_symbol(symbol) + endpoint = "order" params = { - 'symbol': mexc_symbol, + 'symbol': formatted_symbol, 'orderId': order_id } - + logger.info(f"MEXC: Getting status for order {order_id} for {formatted_symbol}") try: - order_info = self._send_private_request('GET', 'order', params) - return order_info + # MEXC API endpoint for order status is /api/v3/order (GET) + status_result = self._send_private_request('GET', endpoint, params) + if status_result: + logger.info(f"MEXC: Order status retrieved: {status_result}") + return status_result + else: + logger.error(f"MEXC: Error getting order status: {status_result}") + return {} except Exception as e: - logger.error(f"Error getting order status for {order_id} on {symbol}: {str(e)}") - raise - - def get_open_orders(self, symbol: str = None) -> List[Dict[str, Any]]: - """Get all open orders, optionally filtered by symbol. - - Args: - symbol: Trading symbol (e.g., 'BTC/USDT'), or None for all symbols - - Returns: - list: List of open orders - """ + logger.error(f"MEXC: Exception getting order status: {e}") + return {} + + def get_open_orders(self, symbol: Optional[str] = None) -> List[Dict[str, Any]]: + """Get all open orders on MEXC for a symbol or all symbols.""" + endpoint = "openOrders" params = {} if symbol: - params['symbol'] = symbol.replace('/', '') + params['symbol'] = self._format_spot_symbol(symbol) + logger.info(f"MEXC: Getting open orders for {symbol if symbol else 'all symbols'}") try: - open_orders = self._send_private_request('GET', 'openOrders', params) + # MEXC API endpoint for open orders is /api/v3/openOrders (GET) + open_orders = self._send_private_request('GET', endpoint, params) + if open_orders and isinstance(open_orders, list): + logger.info(f"MEXC: Retrieved {len(open_orders)} open orders.") return open_orders + else: + logger.error(f"MEXC: Error getting open orders: {open_orders}") + return [] except Exception as e: - logger.error(f"Error getting open orders: {str(e)}") + logger.error(f"MEXC: Exception getting open orders: {e}") return [] - def get_trading_fees(self) -> Dict[str, Any]: - """Get current trading fee rates from MEXC API - - Returns: - dict: Trading fee information including maker/taker rates - """ + def get_my_trades(self, symbol: str, limit: int = 100) -> List[Dict[str, Any]]: + """Get trade history for a specific symbol.""" + formatted_symbol = self._format_spot_symbol(symbol) + endpoint = "myTrades" + params = {'symbol': formatted_symbol, 'limit': limit} + + logger.info(f"MEXC: Getting trade history for {formatted_symbol} (limit: {limit})") try: - # MEXC API endpoint for account commission rates - account_info = self._send_private_request('GET', 'account', {}) - - # Extract commission rates from account info with null safety - # MEXC typically returns commission rates in the account response - maker_commission = account_info.get('makerCommission', 0) - taker_commission = account_info.get('takerCommission', 0) - - # Fix: Add null safety checks to prevent division by None - if maker_commission is None: - logger.warning("MEXC API returned None for makerCommission, using fallback") - maker_commission = 0 - - if taker_commission is None: - logger.warning("MEXC API returned None for takerCommission, using fallback") - taker_commission = 50 # 0.05% fallback - - # Convert from basis points to decimal with additional safety - try: - maker_rate = float(maker_commission) / 100000 # Convert from basis points - taker_rate = float(taker_commission) / 100000 - except (TypeError, ValueError) as e: - logger.error(f"Error converting commission rates: maker={maker_commission}, taker={taker_commission}, error={e}") - # Use safe fallback values - maker_rate = 0.0000 # 0.00% - taker_rate = 0.0005 # 0.05% - - logger.info(f"MEXC: Retrieved trading fees - Maker: {maker_rate*100:.3f}%, Taker: {taker_rate*100:.3f}%") - - return { - 'maker_rate': maker_rate, - 'taker_rate': taker_rate, - 'maker_commission': maker_commission, - 'taker_commission': taker_commission, - 'source': 'mexc_api', - 'timestamp': int(time.time()) - } - + # MEXC API endpoint for trade history is /api/v3/myTrades (GET) + trade_history = self._send_private_request('GET', endpoint, params) + if trade_history and isinstance(trade_history, list): + logger.info(f"MEXC: Retrieved {len(trade_history)} trade records.") + return trade_history + else: + logger.error(f"MEXC: Error getting trade history: {trade_history}") + return [] except Exception as e: - logger.error(f"Error getting MEXC trading fees: {e}") - # Return safe fallback values + logger.error(f"MEXC: Exception getting trade history: {e}") + return [] + + def get_server_time(self) -> int: + """Get current MEXC server time in milliseconds.""" + endpoint = "time" + response = self._send_public_request('GET', endpoint) + if response and 'serverTime' in response: + return int(response['serverTime']) + logger.error("Failed to get MEXC server time.") + return int(time.time() * 1000) # Fallback to local time + + def get_all_balances(self) -> Dict[str, Dict[str, float]]: + """Get all asset balances from MEXC account.""" + account_info = self.get_account_info() + balances = {} + if account_info and 'balances' in account_info: + for balance in account_info['balances']: + asset = balance.get('asset') + free = float(balance.get('free')) + locked = float(balance.get('locked')) + if asset: + balances[asset.upper()] = {'free': free, 'locked': locked, 'total': free + locked} + return balances + + def get_trading_fees(self) -> Dict[str, Any]: + """Get current trading fee rates from MEXC API""" + endpoint = "account/commission" + response = self._send_private_request('GET', endpoint) + if response and 'data' in response: + fees_data = response['data'] return { - 'maker_rate': 0.0000, # 0.00% fallback - 'taker_rate': 0.0005, # 0.05% fallback - 'source': 'fallback', - 'error': str(e), - 'timestamp': int(time.time()) + 'maker': float(fees_data.get('makerCommission', 0.0)), + 'taker': float(fees_data.get('takerCommission', 0.0)), + 'default': float(fees_data.get('defaultCommission', 0.0)) } + logger.error("Failed to get trading fees from MEXC API.") + return {} def get_symbol_trading_fees(self, symbol: str) -> Dict[str, Any]: - """Get trading fees for a specific symbol - - Args: - symbol: Trading symbol (e.g., 'ETH/USDT') - - Returns: - dict: Symbol-specific trading fee information - """ - try: - mexc_symbol = symbol.replace('/', '') - - # Try to get symbol-specific fee info from exchange info - exchange_info_response = self._send_public_request('GET', 'exchangeInfo', {}) - - if exchange_info_response and 'symbols' in exchange_info_response: - symbol_info = None - for sym in exchange_info_response['symbols']: - if sym.get('symbol') == mexc_symbol: - symbol_info = sym - break - - if symbol_info: - # Some exchanges provide symbol-specific fees in exchange info - logger.info(f"MEXC: Found symbol info for {symbol}") - - # For now, use account-level fees as symbol-specific fees - # This can be enhanced if MEXC provides symbol-specific fee endpoints - account_fees = self.get_trading_fees() - account_fees['symbol'] = symbol - account_fees['symbol_specific'] = False - return account_fees - - # Fallback to account-level fees - account_fees = self.get_trading_fees() - account_fees['symbol'] = symbol - account_fees['symbol_specific'] = False - return account_fees - - except Exception as e: - logger.error(f"Error getting symbol trading fees for {symbol}: {e}") + """Get trading fee rates for a specific symbol from MEXC API""" + formatted_symbol = self._format_spot_symbol(symbol) + endpoint = "account/commission" + params = {'symbol': formatted_symbol} + response = self._send_private_request('GET', endpoint, params) + if response and 'data' in response: + fees_data = response['data'] return { - 'symbol': symbol, - 'maker_rate': 0.0000, - 'taker_rate': 0.0005, - 'source': 'fallback', - 'symbol_specific': False, - 'error': str(e), - 'timestamp': int(time.time()) - } \ No newline at end of file + 'maker': float(fees_data.get('makerCommission', 0.0)), + 'taker': float(fees_data.get('takerCommission', 0.0)), + 'default': float(fees_data.get('defaultCommission', 0.0)) + } + logger.error(f"Failed to get trading fees for {symbol} from MEXC API.") + return {} \ No newline at end of file diff --git a/config.yaml b/config.yaml index 40683ec..c74694a 100644 --- a/config.yaml +++ b/config.yaml @@ -154,7 +154,7 @@ trading: # MEXC Trading API Configuration mexc_trading: enabled: true - trading_mode: simulation # simulation, testnet, live + trading_mode: live # simulation, testnet, live # FIXED: Meaningful position sizes for learning base_position_usd: 25.0 # $25 base position (was $1) diff --git a/core/mexc_webclient/auto_browser.py b/core/mexc_webclient/auto_browser.py index 909932e..feecb16 100644 --- a/core/mexc_webclient/auto_browser.py +++ b/core/mexc_webclient/auto_browser.py @@ -27,7 +27,6 @@ try: from selenium.webdriver.support import expected_conditions as EC from selenium.common.exceptions import TimeoutException, WebDriverException from webdriver_manager.chrome import ChromeDriverManager - from selenium.webdriver.common.desired_capabilities import DesiredCapabilities except ImportError: print("Please install selenium and webdriver-manager:") print("pip install selenium webdriver-manager") @@ -68,16 +67,21 @@ class MEXCRequestInterceptor: self.cookies_file = f"mexc_cookies_{self.timestamp}.json" def setup_chrome_with_logging(self) -> webdriver.Chrome: - """Setup Chrome with performance logging enabled""" - logger.info("Setting up ChromeDriver with request interception...") + """Setup Brave browser with performance logging enabled""" + logger.info("Setting up ChromeDriver with request interception for Brave browser...") - # Chrome options + # Chrome options (used for Brave as it's Chromium-based) chrome_options = Options() if self.headless: chrome_options.add_argument("--headless") logger.info("Running in headless mode") + # Set the binary location for Brave + # brave_binary_path = "C:\\Program Files\\BraveSoftware\\Brave-Browser\\Application\\brave.exe" + # chrome_options.binary_location = brave_binary_path + # logger.info(f"Using Brave binary at: {brave_binary_path}") + # Essential options for automation chrome_options.add_argument("--no-sandbox") chrome_options.add_argument("--disable-dev-shm-usage") @@ -99,12 +103,14 @@ class MEXCRequestInterceptor: chrome_options.add_argument("--log-level=0") chrome_options.add_argument("--v=1") - # Set capabilities for performance logging - caps = DesiredCapabilities.CHROME - caps['goog:loggingPrefs'] = { + # Set logging preferences for performance data + chrome_options.set_capability('goog:loggingPrefs', { 'performance': 'ALL', 'browser': 'ALL' - } + }) + + # # Add profile directory argument as provided by the user + # chrome_options.add_argument("--profile-directory=Profile 3") try: # Automatically download and install ChromeDriver @@ -114,8 +120,7 @@ class MEXCRequestInterceptor: # Create driver driver = webdriver.Chrome( service=service, - options=chrome_options, - desired_capabilities=caps + options=chrome_options ) # Hide automation indicators diff --git a/core/trading_executor.py b/core/trading_executor.py index d954c6c..b461d7d 100644 --- a/core/trading_executor.py +++ b/core/trading_executor.py @@ -3,6 +3,9 @@ Trading Executor for MEXC API Integration This module handles the execution of trading signals through the MEXC exchange API. It includes position management, risk controls, and safety features. + +https://github.com/mexcdevelop/mexc-api-postman/blob/main/MEXC%20V3.postman_collection.json +MEXC V3.postman_collection.json """ import logging @@ -89,7 +92,8 @@ class TradingExecutor: self.exchange = MEXCInterface( api_key=api_key, api_secret=api_secret, - test_mode=exchange_test_mode + test_mode=exchange_test_mode, + trading_mode=trading_mode ) # Trading state @@ -101,6 +105,8 @@ class TradingExecutor: self.trading_enabled = self.mexc_config.get('enabled', False) self.trading_mode = trading_mode + logger.debug(f"TRADING EXECUTOR: Initial trading_enabled state from config: {self.trading_enabled}") + # Legacy compatibility (deprecated) self.dry_run = self.simulation_mode @@ -109,7 +115,12 @@ class TradingExecutor: # Connect to exchange if self.trading_enabled: - self._connect_exchange() + logger.info("TRADING EXECUTOR: Attempting to connect to exchange...") + if not self._connect_exchange(): + logger.error("TRADING EXECUTOR: Failed initial exchange connection. Trading will be disabled.") + self.trading_enabled = False + else: + logger.info("TRADING EXECUTOR: Trading is explicitly disabled in config.") logger.info(f"Trading Executor initialized - Mode: {self.trading_mode}, Enabled: {self.trading_enabled}") @@ -143,17 +154,20 @@ class TradingExecutor: def _connect_exchange(self) -> bool: """Connect to the MEXC exchange""" try: + logger.debug("TRADING EXECUTOR: Calling self.exchange.connect()...") connected = self.exchange.connect() + logger.debug(f"TRADING EXECUTOR: self.exchange.connect() returned: {connected}") if connected: logger.info("Successfully connected to MEXC exchange") return True else: - logger.error("Failed to connect to MEXC exchange") + logger.error("Failed to connect to MEXC exchange: Connection returned False.") if not self.dry_run: + logger.info("TRADING EXECUTOR: Setting trading_enabled to False due to connection failure.") self.trading_enabled = False return False except Exception as e: - logger.error(f"Error connecting to MEXC exchange: {e}") + logger.error(f"Error connecting to MEXC exchange: {e}. Setting trading_enabled to False.") self.trading_enabled = False return False @@ -170,8 +184,9 @@ class TradingExecutor: Returns: bool: True if trade executed successfully """ + logger.debug(f"TRADING EXECUTOR: execute_signal called. trading_enabled: {self.trading_enabled}") if not self.trading_enabled: - logger.info(f"Trading disabled - Signal: {action} {symbol} (confidence: {confidence:.2f})") + logger.info(f"Trading disabled - Signal: {action} {symbol} (confidence: {confidence:.2f}) - Reason: Trading executor is not enabled.") return False if action == 'HOLD': @@ -181,23 +196,51 @@ class TradingExecutor: if not self._check_safety_conditions(symbol, action): return False - # Get current price if not provided + # Get current price if not provided if current_price is None: ticker = self.exchange.get_ticker(symbol) - if not ticker: - logger.error(f"Failed to get current price for {symbol}") + if not ticker or 'last' not in ticker: + logger.error(f"Failed to get current price for {symbol} or ticker is malformed.") return False current_price = ticker['last'] # Assert that current_price is not None for type checking assert current_price is not None, "current_price should not be None at this point" + # --- Balance check before executing trade --- + # Only perform balance check for BUY actions or SHORT (initial sell) actions + if action == 'BUY' or (action == 'SELL' and symbol not in self.positions) or (action == 'SHORT'): + # Determine the quote asset (e.g., USDT, USDC) from the symbol + if '/' in symbol: + quote_asset = symbol.split('/')[1].upper() # Assuming symbol is like ETH/USDT + else: + # Fallback for symbols like ETHUSDT (assuming last 4 chars are quote) + quote_asset = symbol[-4:].upper() + + # Calculate required capital for the trade + # If we are selling (to open a short position), we need collateral based on the position size + # For simplicity, assume required capital is the full position value in USD + required_capital = self._calculate_position_size(confidence, current_price) + + # Get available balance for the quote asset + available_balance = self.exchange.get_balance(quote_asset) + + logger.info(f"BALANCE CHECK: Symbol: {symbol}, Action: {action}, Required: ${required_capital:.2f} {quote_asset}, Available: ${available_balance:.2f} {quote_asset}") + + if available_balance < required_capital: + logger.warning(f"Trade blocked for {symbol} {action}: Insufficient {quote_asset} balance. " + f"Required: ${required_capital:.2f}, Available: ${available_balance:.2f}") + return False + # --- End Balance check --- + with self.lock: try: if action == 'BUY': return self._execute_buy(symbol, confidence, current_price) elif action == 'SELL': return self._execute_sell(symbol, confidence, current_price) + elif action == 'SHORT': # Explicitly handle SHORT if it's a direct signal + return self._execute_short(symbol, confidence, current_price) else: logger.warning(f"Unknown action: {action}") return False diff --git a/mexc_cookies_20250703_003625.json b/mexc_cookies_20250703_003625.json new file mode 100644 index 0000000..557b1dc --- /dev/null +++ b/mexc_cookies_20250703_003625.json @@ -0,0 +1,29 @@ +{ + "bm_sv": "D92603BBC020E9C2CD11B2EBC8F22050~YAAQJKVf1NW5K7CXAQAAwtMVzRzHARcY60jrPVzy9G79fN3SY4z988SWHHxQlbPpyZHOj76c20AjCnS0QwveqzB08zcRoauoIe/sP3svlaIso9PIdWay0KIIVUe1XsiTJRfTm/DmS+QdrOuJb09rbfWLcEJF4/0QK7VY0UTzPTI2V3CMtxnmYjd1+tjfYsvt1R6O+Mw9mYjb7SjhRmiP/exY2UgZdLTJiqd+iWkc5Wejy5m6g5duOfRGtiA9mfs=~1", + "bm_sz": "98D80FE4B23FE6352AE5194DA699FDDB~YAAQJKVf1GK4K7CXAQAAeQ0UzRw+aXiY5/Ujp+sZm0a4j+XAJFn6fKT4oph8YqIKF6uHSgXkFY3mBt8WWY98Y2w1QzOEFRkje8HTUYQgJsV59y5DIOTZKC6wutPD/bKdVi9ZKtk4CWbHIIRuCrnU1Nw2jqj5E0hsorhKGh8GeVsAeoao8FWovgdYD6u8Qpbr9aL5YZgVEIqJx6WmWLmcIg+wA8UFj8751Fl0B3/AGxY2pACUPjonPKNuX/UDYA5e98plOYUnYLyQMEGIapSrWKo1VXhKBDPLNedJ/Q2gOCGEGlj/u1Fs407QxxXwCvRSegL91y6modtL5JGoFucV1pYc4pgTwEAEdJfcLCEBaButTbaHI9T3SneqgCoGeatMMaqz0GHbvMD7fBQofARBqzN1L6aGlmmAISMzI3wx/SnsfXBl~3228228~3294529", + "_abck": "0288E759712AF333A6EE15F66BC2A662~-1~YAAQJKVf1GC4K7CXAQAAeQ0UzQ77TfyX5SOWTgdW3DVqNFrTLz2fhLo2OC4I6ZHnW9qB0vwTjFDfOB65BwLSeFZoyVypVCGTtY/uL6f4zX0AxEGAU8tLg/jeO0acO4JpGrjYZSW1F56vEd9JbPU2HQPNERorgCDLQMSubMeLCfpqMp3VCW4w0Ssnk6Y4pBSs4mh0PH95v56XXDvat9k20/JPoK3Ip5kK2oKh5Vpk5rtNTVea66P0NBjVUw/EddRUuDDJpc8T4DtTLDXnD5SNDxEq8WDkrYd5kP4dNe0PtKcSOPYs2QLUbvAzfBuMvnhoSBaCjsqD15EZ3eDAoioli/LzsWSxaxetYfm0pA/s5HBXMdOEDi4V0E9b79N28rXcC8IJEHXtfdZdhJjwh1FW14lqF9iuOwER81wDEnIVtgwTwpd3ffrc35aNjb+kGiQ8W0FArFhUI/ZY2NDvPVngRjNrmRm0CsCm+6mdxxVNsGNMPKYG29mcGDi2P9HGDk45iOm0vzoaYUl1PlOh4VGq/V3QGbPYpkBsBtQUjrf/SQJe5IAbjCICTYlgxTo+/FAEjec+QdUsagTgV8YNycQfTK64A2bs1L1n+RO5tapLThU6NkxnUbqHOm6168RnT8ZRoAUpkJ5m3QpqSsuslnPRUPyxUr73v514jTBIUGsq4pUeRpXXd9FAh8Xkn4VZ9Bh3q4jP7eZ9Sv58mgnEVltNBFkeG3zsuIp5Hu69MSBU+8FD4gVlncbBinrTLNWRB8F00Gyvc03unrAznsTEyLiDq9guQf9tQNcGjxfggfnGq/Z1Gy/A7WMjiYw7pwGRVzAYnRgtcZoww9gQ/FdGkbp2Xl+oVZpaqFsHVvafWyOFr4pqQsmd353ddgKLjsEnpy/jcdUsIR/Ph3pYv++XlypXehXj0/GHL+WsosujJrYk4TuEsPKUcyHNr+r844mYUIhCYsI6XVKrq3fimdfdhmlkW8J1kZSTmFwP8QcwGlTK/mZDTJPyf8K5ugXcqOU8oIQzt5B2zfRwRYKHdhb8IUw=~-1~-1~-1", + "RT": "\"z=1&dm=www.mexc.com&si=f5d53b58-7845-4db4-99f1-444e43d35199&ss=mcmh857q&sl=3&tt=90n&bcn=%2F%2F684dd311.akstat.io%2F&ld=1c9o\"", + "mexc_fingerprint_visitorId": "tv1xchuZQbx9N0aBztUG", + "_ga_L6XJCQTK75": "GS2.1.s1751492192$o1$g1$t1751492248$j4$l0$h0", + "uc_token": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "u_id": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "_fbp": "fb.1.1751492193579.314807866777158389", + "mxc_exchange_layout": "BA", + "sensorsdata2015jssdkcross": "%7B%22distinct_id%22%3A%2221a8728990b84f4fa3ae64c8004b4aaa%22%2C%22first_id%22%3A%22197cd11dc751be-0dd66c04c69e96-26011f51-3686400-197cd11dc76189d%22%2C%22props%22%3A%7B%22%24latest_traffic_source_type%22%3A%22%E7%9B%B4%E6%8E%A5%E6%B5%81%E9%87%8F%22%2C%22%24latest_search_keyword%22%3A%22%E6%9C%AA%E5%8F%96%E5%88%B0%E5%80%BC_%E7%9B%B4%E6%8E%A5%E6%89%93%E5%BC%80%22%2C%22%24latest_referrer%22%3A%22%22%2C%22%24latest_landing_page%22%3A%22https%3A%2F%2Fwww.mexc.com%2Fen-GB%2Flogin%3Fprevious%3D%252Ffutures%252FETH_USDT%253Ftype%253Dlinear_swap%22%7D%2C%22identities%22%3A%22eyIkaWRlbnRpdHlfY29va2llX2lkIjoiMTk3Y2QxMWRjNzUxYmUtMGRkNjZjMDRjNjllOTYtMjYwMTFmNTEtMzY4NjQwMC0xOTdjZDExZGM3NjE4OWQiLCIkaWRlbnRpdHlfbG9naW5faWQiOiIyMWE4NzI4OTkwYjg0ZjRmYTNhZTY0YzgwMDRiNGFhYSJ9%22%2C%22history_login_id%22%3A%7B%22name%22%3A%22%24identity_login_id%22%2C%22value%22%3A%2221a8728990b84f4fa3ae64c8004b4aaa%22%7D%2C%22%24device_id%22%3A%22197cd11dc751be-0dd66c04c69e96-26011f51-3686400-197cd11dc76189d%22%7D", + "mxc_theme_main": "dark", + "mexc_fingerprint_requestId": "1751492199306.WMvKJd", + "_ym_visorc": "b", + "mexc_clearance_modal_show_date": "2025-07-03-undefined", + "ak_bmsc": "35C21AA65F819E0BF9BEBDD10DCF7B70~000000000000000000000000000000~YAAQJKVf1BK2K7CXAQAAPAISzRwQdUOUs1H3HPAdl4COMFQAl+aEPzppLbdgrwA7wXbP/LZpxsYCFflUHDppYKUjzXyTZ9tIojSF3/6CW3OCiPhQo/qhf6XPbC4oQHpCNWaC9GJWEs/CGesQdfeBbhkXdfh+JpgmgCF788+x8IveDE9+9qaL/3QZRy+E7zlKjjvmMxBpahRy+ktY9/KMrCY2etyvtm91KUclr4k8HjkhtNJOlthWgUyiANXJtfbNUMgt+Hqgqa7QzSUfAEpxIXQ1CuROoY9LbU292LRN5TbtBy/uNv6qORT38rKsnpi7TGmyFSB9pj3YsoSzIuAUxYXSh4hXRgAoUQm3Yh5WdLp4ONeyZC1LIb8VCY5xXRy/VbfaHH1w7FodY1HpfHGKSiGHSNwqoiUmMPx13Rgjsgki4mE7bwFmG2H5WAilRIOZA5OkndEqGrOuiNTON7l6+g6mH0MzZ+/+3AjnfF2sXxFuV9itcs9x", + "mxc_theme_upcolor": "upgreen", + "_vid_t": "mQUFl49q1yLZhrL4tvOtFF38e+hGW5QoMS+eXKVD9Q4vQau6icnyipsdyGLW/FBukiO2ItK7EtzPIPMFrE5SbIeLSm1NKc/j+ZmobhX063QAlskf1x1J", + "_ym_isad": "2", + "_ym_d": "1751492196", + "_ym_uid": "1751492196843266888", + "bm_mi": "02862693F007017AEFD6639269A60D08~YAAQJKVf1Am2K7CXAQAAIf4RzRzNGqZ7Q3BC0kAAp/0sCOhHxxvEWTb7mBl8p7LUz0W6RZbw5Etz03Tvqu3H6+sb+yu1o0duU+bDflt7WLVSOfG5cA3im8Jeo6wZhqmxTu6gGXuBgxhrHw/RGCgcknxuZQiRM9cbM6LlZIAYiugFm2xzmO/1QcpjDhs4S8d880rv6TkMedlkYGwdgccAmvbaRVSmX9d5Yukm+hY+5GWuyKMeOjpatAhcgjShjpSDwYSpyQE7vVZLBp7TECIjI9uoWzR8A87YHScKYEuE08tb8YtGdG3O6g70NzasSX0JF3XTCjrVZA==~1", + "_ga": "GA1.1.626437359.1751492192", + "NEXT_LOCALE": "en-GB", + "x-mxc-fingerprint": "tv1xchuZQbx9N0aBztUG", + "CLIENT_LANG": "en-GB", + "sajssdk_2015_cross_new_user": "1" +} \ No newline at end of file diff --git a/mexc_requests_20250703_003625.json b/mexc_requests_20250703_003625.json new file mode 100644 index 0000000..e855c7a --- /dev/null +++ b/mexc_requests_20250703_003625.json @@ -0,0 +1,16883 @@ +{ + "requests": [ + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.753906", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.221" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.753906", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.222" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.753906", + "url": "https://futures.mexc.com/api/v1/contract/support_currencies", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.223" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.758910", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "c02ed6a5-e1e4-407b-a0ed-9e77c0459184-0003", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.319" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.761908", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "95ddb46a-1f74-44dc-be6d-28857aa68bc3-0004", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.336" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.761908", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "2b395136-167c-4a1c-9d49-63503bedb825-0005", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.337" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.761908", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "717543d0-6396-4911-a404-ada2c07c4b58-0006", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.338" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.762909", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "a6665a76-3d8d-469a-9e9d-625ff89b7b1c-0007", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.339" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.762909", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "platform": "web", + "trochilus-trace-id": "8ec4c7e9-6738-4535-9af1-b3bd397eaf69-0008", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.340" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.763907", + "url": "https://www.mexc.com/api/activity/contract/home-menus?language=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e67ebc53-e69c-488a-a31b-8cac7c337f69-0012", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.349" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.763907", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "fba48c2d-ee57-4ffa-b3b5-93f73141a5be-0014", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.351" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.764907", + "url": "https://www.mexc.com/api/activity/contract/activity/country/amount", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "014f3a94-9bbb-4ca7-bced-a4bd88c811ba-0015", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.352" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.765906", + "url": "https://www.mexc.com/api/activity/contract/coin/introduce/v2?language=en-GB&contractId=11", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "00b3864d-98af-4b99-852f-08fa7d434c72-0016", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.353" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.765906", + "url": "https://www.mexc.com/api/common/ping", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "trochilus-trace-id": "217ad362-a2a1-482b-983a-d580c61db152-0017", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.354" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.767943", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8fe8a741-674e-4ce6-9f6d-30f790ad3ca3-0025", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.397" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.768945", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "c663acb8-ffb8-4656-881f-3bc80582bc63-0027", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.399" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.772942", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/hidden/symbols", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "b075e357-3b89-4169-ad4c-cd6cdbaa8f26-0033", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.417" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.772942", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/symbolsV2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "1253e48d-de21-4a23-a02f-96d2b51a1617-0034", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.418" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.772942", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/meme/coins", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "72965181-c4bc-4a14-aaa7-f17bbabc50a7-0035", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.419" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.774943", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "1f366730-00e1-40b2-a15f-c74c82f583e0-0037", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.421" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.777944", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "f9110d63-7a35-46cd-8310-6e96cb775a82-0044", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.453" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.778944", + "url": "https://www.mexc.com/api/operation/locale_currency_config", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "d3c848c6-a98e-477d-ab91-f8518bb865ee-0045", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.454" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.782944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=3&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "88840e57-4f49-4e7f-9de8-0d7f73aff838-0050", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.462" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.782944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "7901338e-bb8e-46d6-b654-755e2650e278-0051", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.463" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.782944", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "05039bd3-bd2e-425f-9f2c-04511d197ccc-0052", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.464" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.783944", + "url": "https://www.mexc.com/api/operation/placements/code/main_home_banner?category=NONE&platformType=1&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e185fe9b-552e-4c39-a144-db7be94f0385-0056", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.470" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.784943", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "4fae9a60-5059-4560-a1c6-c91fa049bce2-0057", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.471" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.785944", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "3a9e32de-a1c2-4960-bb40-9dea218cc178-0060", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.474" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.786944", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "66a20539-3e64-4171-a782-d5d478c6d3c1-0062", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.477" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.786944", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "7860f062-001b-416c-8782-2f25cda4d7d1-0063", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.478" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.787947", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2986e24c-d05e-479f-9277-cd35d5d43a00-0064", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.479" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.787947", + "url": "https://www.mexc.com/api/platform/asset/api/common/currency/exchange/rate", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "2242cff2-5901-416b-a027-0dd1b5fa20d1-0065", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.480" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.787947", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "793558cb-2e43-4c5c-bf9b-a87b2bcbca88-0066", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.481" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.787947", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/config?action=robot.", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "007e68b1-48f5-4678-a7bd-4c7b7e7f1fc5-0067", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.482" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.790943", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "18ea1d74-27f1-4b06-b38c-75c2859cca91-0068", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.487" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.790943", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "3c803da0-e506-4f8d-bd02-3ee0cf1c5e47-0069", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.488" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.791943", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "3b0c1f10-5f08-43da-ab19-12e49f8d383b-0070", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.489" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.791943", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "cd0b69ef-a2f6-4f82-b897-196e71b4bc04-0071", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.491" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.791943", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "9d9351ab-ef41-4bd7-b346-7f508b131d97-0072", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.492" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.792944", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "99924712-5023-42d9-92cb-653ddaeb3491-0073", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.493" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.793944", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "bfebdec9-c5f7-4ad9-8470-47ee68fff677-0074", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.496" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.794946", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "7ff95b13-0efd-446a-974b-740a53c62ff4-0075", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.497" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.794946", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "765365ff-9b26-4573-b7b6-005082177e24-0076", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.498" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.796945", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "940034be-c05c-449a-bab9-892fe353dde9-0077", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.499" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.799944", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "92851f37-30c4-4a81-b98b-9c6a518829a6-0079", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.527" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.804944", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751492192&interval=Min15&start=1750592192", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "47764b46-8809-40d5-ac47-15db79219d76-0081", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.539" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.805943", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8845c531-7c8e-4733-ae39-79b4a948294c-0083", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.542" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.807945", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "c1c5096f-e1d7-46a9-8018-3309cb8c5a88-0087", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.558" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.807945", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "0a8cc324-d535-49e4-aa87-99432ba604f3-0088", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.559" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.809944", + "url": "https://www.mexc.com/api/operation/global/search/config/default/coin", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "addbbc0b-79bb-4a1d-bc3a-ba07f61ad052-0091", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.563" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.810944", + "url": "https://www.mexc.com/api/dex/v1/data/get_config_v3", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492194", + "N-Uuid": "c6dd42a9-df9c-417f-892c-5bece186a143", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "bac4ec8cd25c9f6c78d889d6b6a577a5", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "trochilus-trace-id": "5270fa6d-2e0d-46f2-b650-a6cc2f660b75-0092", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.564" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.810944", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/list?lang=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "6816bf6d-f682-45b7-9919-c456612f5fdc-0094", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.566" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.810944", + "url": "https://www.mexc.com/api/operation/popup/strategy/v2?platformType=WEB&lang=en-GB&zoneId=Europe/Kiev", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "7559e80e-b20d-4941-bda1-41759e234d8b-0095", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.567" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.811943", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "60a5dba2-125a-421d-8898-d8f03d26f8d8-0099", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.574" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.813945", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/profits?lang=en-GB&type=INCOME", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "495d53b3-1e62-4ab8-8b21-10fd32a8c31e-0100", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.575" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.814944", + "url": "https://www.mexc.com/api/operation/popup/config?platformType=WEB&lang=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "62275783-d8a3-4866-8183-62d9ecfe1dea-0107", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.582" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/hidden/symbols", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-851f915145e23766-0", + "trochilus-trace-id": "e778c5ae-234e-42d9-8cfe-a093d3a67683-0013", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.808" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/symbolsV2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-b337f086ec4d5f31-0", + "trochilus-trace-id": "c55beb38-e328-4f97-8d01-70853982db7f-0014", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.809" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/meme/coins", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-9f1b19c6d85109ce-0", + "trochilus-trace-id": "0a7b9a50-355f-4e4b-bc70-85334ce0b850-0015", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.810" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "a70c4642-38de-4864-a142-15be814fd0c2-0016", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.811" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "platform": "web", + "trochilus-trace-id": "e702c180-191c-4343-afce-3f778d5e8c9a-0017", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.812" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=3&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "2615a8e8-2ee4-4467-a959-46842b466079-0019", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.817" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "7f140145-2089-4720-b4e7-7f88356e64c5-0020", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.818" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.824945", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e2abac25-67f4-4d7f-966e-3be3500d1b66-0021", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.819" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.825944", + "url": "https://www.mexc.com/api/common/ping", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "trochilus-trace-id": "e00bba20-b0fd-404c-8138-1426341244e4-0022", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.822" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.825944", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/config?action=robot.", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "device-id": "d232fdcef017520be35fda8d34bc393a", + "language": "en-GB", + "timezone-login": "UTC+03:00", + "trochilus-trace-id": "28b52930-7518-462c-a03a-fa7eedeea7e1-0029", + "trochilus-uid": "", + "ucenter-token": "" + }, + "postData": "", + "requestId": "205584.831" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.826943", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-a36791748fe3c69d-0", + "timezone": "UTC+8", + "trochilus-trace-id": "d81ba2eb-d7d4-45f0-ac52-38d6ddf1ee1c-0032", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.838" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.827943", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "6276217a-ea94-4942-8b98-6ea740f6e373-0035", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.840" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.827943", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_general_float?platformType=3&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-a2a4654f67f3ba43-0", + "trochilus-trace-id": "dabd46c6-672d-4a1a-8174-385815c4db58-0038", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.845" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.830944", + "url": "https://www.mexc.com/api/customer/community_channel", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "842d23de-2392-49e6-98f6-6179adfc7ad7-0040", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.861" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.830944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9489b69f-57f5-4720-aa9c-2e4f9b65cdb6-0041", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.862" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.834947", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9b6b8780-3229-40c8-9f3d-7c6a27144a3a-0047", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.877" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:37.835945", + "url": "https://www.mexc.com/api/operation/locale_currency_config", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "a75d2675-efe5-413a-97eb-a2aab5d6f890-0048", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.879" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.468609", + "url": "https://www.mexc.com/api/operation/placements/code/main_home_banner?category=NONE&platformType=1&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e9648cff-be20-4e84-b936-18c9271d7250-0067", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.906" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.468609", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/timezone/list", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-b39a2b499a0a5ac1-0", + "trochilus-trace-id": "122abc1e-aa92-4542-98d8-7439785373ab-0068", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.907" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.475607", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8cdd748f-4f85-40b2-9ef4-889dbe64c718-0077", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.952" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.475607", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "4f95351c-6408-48a3-952e-1ac539918dc2-0078", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.953" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.475607", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "4e003092-75d5-4372-b6aa-418fc324758b-0079", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.954" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.475607", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8c1d452d-12e1-4a08-9472-44823add007d-0080", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.955" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.475607", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "7142b60e-a74e-4081-bec5-ad8bbf6c600c-0081", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.956" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.476607", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "10a74617-e929-492d-aa4b-594b8b04228c-0082", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.957" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.999197", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "758a4c51-514d-476a-9482-af2418c14a48-0087", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.985" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:38.999197", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "5d9a369a-0ec1-483f-a6f2-a4df7f71430a-0088", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.986" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:39.506205", + "url": "https://www.mexc.com/api/operation/popup/strategy/v2?platformType=WEB&lang=en-GB&zoneId=Europe/Kiev", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "a9894506-de36-4c2b-a11a-8d5bb183d64b-0089", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.994" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:40.009814", + "url": "https://www.mexc.com/api/operation/popup/config?platformType=WEB&lang=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "39950c5f-073a-4cab-a5e2-1fa3ca6ca7e7-0091", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.996" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:43.543141", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "5c281276-4eac-41ad-be7a-bf7a0e2789ff-0098", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1003" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:43.543141", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-a257b7bb97427808-0", + "timezone": "UTC+8", + "trochilus-trace-id": "c5785d67-5386-4fca-bdba-b6af1665c3c0-0100", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1005" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:43.543141", + "url": "https://www.mexc.com/api/customer/community_channel", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "bd6307a8-fbc4-41ed-81b6-5e12dd3c7ed5-0102", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1007" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:43.543141", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8f132ecd-4bb8-4c7f-876d-daff7cbb1d88-0103", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1008" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:43.543141", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "f692c1d6-b01e-4e66-854a-bec1e452e26a-0104", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1009" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:36:49.612138", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.login.EMAIL", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiJjNTFmZmIyMjk5YWE0MzIyOTY1MzJlN2E2MjliY2ZkNiIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHRGgwRVoyV2hNV3VYb25oS1RXcVVmUHE1RG5wRFRKM3FxaVh2TEZ5MWpiVGxucHZNNjdYOXdobzc1TTA3Z2VmUFhaaDhNT1JoVzRKc0RnazU5NTNFQWZGY3NMQjkwQ1JWNlZVdmt2R0FIMFhQbXpKQk9MaTNaWWt4akNxbUhMcWFGQWc2dGEwb0k0Q2VHV1RrcEdTUGhJa3diM2VPVjdBUXZ6N0FKZ1hfVmZFNWJVT0xac3VDbTdOTmpCOWVMSVgyTnBuWGpZUk9SZEF0Qmc1eXlfQ2ZuQk1MS25Mb3h5UzltbmREY1RlSUpaSktBSHVET1h3c0JubXYzTmJrTllxYU5HamZmbWRuSU85LWx4LTJ3aXVTc1FxRFdnbTN2X0ZraW9tLVlrRmhWejY5eVpJVVZEemluR0J4aEhPam1HajFHTU42NVlxcUpWZFgtZkVVdE5WT2RINFlHcm1FZlh5ZG9aY2Q3N0Z1VVRIcXhVVERWSlc2bEhqUkJxQUFNN3QyeGo4T3JlNE9tN2xRMXB2c3BEaGJkOVlVQTk2SjlyQ1lTblpwRVAwLVNUblpWMnJvWl84NDNrcldaTWF1bXk3MiIsInBhc3NUb2tlbiI6ImRhYzU1YWRmNzI0MjNiYzYxMjdkMzVkMjRjODkzNjMwMmYwOWZhYzAzMDE2ZGU4M2VjN2NkNWYzOWI5ZmM3MDkiLCJnZW5UaW1lIjoiMTc1MTQ5MjE5OSJ9", + "content-type": "application/json", + "device-id": "tv1xchuZQbx9N0aBztUG", + "language": "en-GB", + "timezone-login": "UTC+03:00", + "trochilus-trace-id": "29d533ec-b901-4433-9686-b4ccf481fc2e-0123", + "trochilus-uid": "", + "ucenter-token": "" + }, + "postData": "", + "requestId": "205584.1047" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:03.206203", + "url": "https://www.mexc.com/api/common/ping", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "trochilus-trace-id": "c0a84eb5-aa0a-460b-9cf6-7917c3cab451-0140", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1079" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:10.268359", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9ead31f5-7728-4d15-b9e4-6585898e1488-0152", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1095" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:10.268359", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-b004be96cb9f27ea-0", + "timezone": "UTC+8", + "trochilus-trace-id": "ce591044-6d00-4e6a-9df8-45fde3c1e779-0154", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1097" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:10.268359", + "url": "https://www.mexc.com/api/customer/community_channel", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "4fddb3e4-d2a9-4d8c-b062-e3c6473dac02-0156", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1099" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:10.268359", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e715a23e-f1cb-4557-afe7-abac76f8627b-0157", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1100" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:10.268359", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "b76df585-3370-4550-b5f8-73fdc933abdf-0158", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1101" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:25.882482", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9004f29d-c84e-408a-9c18-7ac7b4cdff5b-0178", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1134" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:25.883483", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "71144cc8-cc91-4f35-bde8-4e7721bc5eaa-0184", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1142" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:25.883483", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "baggage": "sentry-environment=prd,sentry-release=production%20-%20v3.294.12%20-%2032b3879,sentry-public_key=5594a84400b54fcaa39ef63446eb004f,sentry-trace_id=ed42da26f26a4230b23e0795e35d81d5", + "language": "en-GB", + "sentry-trace": "ed42da26f26a4230b23e0795e35d81d5-856e4f7e5cd12f07-0", + "timezone": "UTC+8", + "trochilus-trace-id": "1c483d54-52f6-4a22-8644-de3d61bb2fc2-0186", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1144" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:25.883483", + "url": "https://www.mexc.com/api/customer/community_channel", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "b061106a-7983-4b81-a393-70024dee2335-0188", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1146" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:25.883483", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "d89f1df4-9496-48fb-a8f3-562aa42f24df-0189", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1147" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:25.883483", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "47913236-da36-436e-a671-02ff6530e007-0191", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "205584.1149" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:27.741516", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "25d620cf-e22c-4b76-9aab-efdf1fc7a2af-0201", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1170" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:27.741516", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "f4d22a6e-a2e7-46c4-92d4-d268c4289861-0202", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1171" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:27.742515", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "db98efb6-6ccb-458f-b5ec-22c041b48058-0203", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1172" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:27.742515", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "33c1345f-f131-4a77-ac94-c412a49ed87b-0206", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1175" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:27.742515", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/login?previous=%2Ffutures%2FETH_USDT%3Ftype%3Dlinear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "c9b06c21-40a9-4cdf-be95-0ab019468c39-0207", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1176" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:28.303922", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.1397" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:28.303922", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.1398" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:28.304925", + "url": "https://futures.mexc.com/api/v1/contract/support_currencies", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.1399" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:28.304925", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.1400" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:28.304925", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.1401" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:28.304925", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "205584.1402" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:28.306924", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "5983ef8e-d60b-4800-880d-a497fca2dd81-0002", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1496" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.103339", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "1bb60065-e626-4bf7-83ef-01ec5f2b374e-0005", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1514" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.103339", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "41e90abe-96a2-404a-914e-9b9e92637eaa-0006", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1515" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.103339", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "f853593a-e50f-493e-83ed-85d32dca2be9-0007", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1516" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.103339", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "07bd129b-ee14-4d33-8419-ff8249069230-0008", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1517" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.104337", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "03f30783-b9b1-4ac7-a7ef-785b2f73fe67-0009", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1518" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.104337", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "platform": "web", + "trochilus-trace-id": "637f5398-558d-442f-a30e-718a08846c23-0010", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1519" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.104337", + "url": "https://www.mexc.com/api/activity/contract/home-menus?language=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "6093217d-f73a-4a0a-a296-26c73dab7de2-0014", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1528" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.105337", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "bd2db545-0ad0-42a8-8340-24eed54988f5-0016", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1530" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.105337", + "url": "https://www.mexc.com/api/activity/contract/activity/country/amount", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ec2000f8-36ad-4f16-ac28-0b99695c4f25-0017", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1531" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.105337", + "url": "https://www.mexc.com/api/activity/contract/coin/introduce/v2?language=en-GB&contractId=11", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "9853e317-a422-45b8-a045-57fad5ea98ed-0018", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1532" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.105337", + "url": "https://www.mexc.com/api/common/ping", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "trochilus-trace-id": "9bd12d09-2c6b-436e-a35d-1dca861b49c0-0019", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1533" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.106338", + "url": "https://futures.mexc.com/api/v1/private/user_pref/get", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "87bff7f7-4ef6-4e1a-9d70-22cc20150380-0021", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1535" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.106338", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751492248511", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "9688ddec-eb53-49b9-8871-272bb6fe982b-0023", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1544" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.107339", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/list?language=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "940b8ab0-dcd9-4ffe-addf-f3ff052be170-0024", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1545" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.107339", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/ETH_USDT?language=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8ce26632-f933-4230-b6d9-97289138f4df-0025", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1546" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.108339", + "url": "https://futures.mexc.com/api/v1/private/account/userBonusGuideFlag", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "d0500465-cad1-4a94-b39e-3eee3e5a988b-0026", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1547" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.108339", + "url": "https://www.mexc.com/api/gateway/order/deal/feeAmount", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "cbf0ae18-c699-468e-89bb-294bdf4bfec2-0027", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1548" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.108339", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate_save", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "bf914c78-2a3d-4a70-9b7f-cd65477e3744-0028", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1549" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.109339", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "68808b11-db66-4ac7-9a61-b6a4088edc86-0036", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1562" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.110339", + "url": "https://futures.mexc.com/api/v1/private/position/close_all_enable", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "32d8b9d1-9c5c-4ded-ade2-8a96099e6ca2-0039", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1588" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.111338", + "url": "https://futures.mexc.com/copyFutures/api/v1/myRole", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "en-GB", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "c4eedda3-47bd-4cc9-b8dc-c1200079c9f7-0040", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1589" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.111338", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "77d0fe92-f022-48bf-b69c-0b43206c1aad-0041", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1591" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.113340", + "url": "https://www.mexc.com/api/platform/asset/sys_balances?sys=SWAP", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "f7593826-bbd7-461d-80e8-4ac1bab4d178-0042", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1597" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.114340", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "794294fd-45c1-470f-b491-cb2435b773bc-0044", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1599" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.115339", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "4dcc4153-6fd0-4ad0-abd7-15f1571028b1-0045", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1600" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.115339", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "6d5353a6-dad8-4f64-b012-ffe05805a08b-0046", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1601" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.115339", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "1743867b-2246-4e73-9b17-8fd3a9951e8a-0047", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1602" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.116338", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "c80b7a27-0d13-4ec8-8980-52da04c6ce62-0049", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1604" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.119338", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "f41cf8cb-60c6-466f-8bfc-bf61c6b37fd2-0052", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1631" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.119338", + "url": "https://www.mexc.com/api/activity/contract/bonus/retention", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "a7c1ee39-0b9b-4ca5-853a-4bb8d084d413-0056", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1638" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.119338", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "fb1cb814-1e7c-4d60-890f-aade21b1b57b-0057", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1639" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.821911", + "url": "https://www.mexc.com/api/activity/contract/trade_page/visit", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "4a4bb2b4-a1ad-4ba4-afd7-aef3c7f42867-0059", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1658" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.821911", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751492249&interval=Min15&start=1750592249", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "86eed629-93e0-42c7-8e27-4e4d2a55ad6f-0060", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1659" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.824908", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/hidden/symbols", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "61f93882-a15c-47e2-9168-4f71906b45cc-0062", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1662" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.824908", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/symbolsV2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "0f8c5882-8aba-4f93-9c27-e6be8c13d955-0063", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1663" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.824908", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/meme/coins", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "13734b34-ce02-4bf4-9109-8c84275c64aa-0064", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1664" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.825907", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "06613b9e-110f-4ff1-b16a-25290789a853-0066", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1666" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.826908", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "30e3bb50-5c57-48b2-9173-690ec1236aa6-0067", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1690" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.827908", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "b0eed2ba-d386-4def-a9ad-58336f1b0b39-0069", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1692" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.827908", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "097dbd7f-ef20-41e5-8536-7a6f127ac4dc-0070", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1693" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.827908", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "9651d372-689f-4b01-8f8f-0956f824759b-0071", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1694" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.828911", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e187d957-47de-43ee-b359-92838b2ad755-0072", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1695" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.828911", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e89c2048-0ea6-4b83-8b74-7b872c84af92-0073", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1696" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.828911", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "dfb013d5-07a6-4526-85f4-3c1aef1faa01-0074", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1697" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.828911", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e81e1635-259e-44ac-829d-2128616a22a9-0075", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1698" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.828911", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8e655b19-b46c-4db6-bf7f-9eae5b17ee0c-0076", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1699" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.830907", + "url": "https://www.mexc.com/api/activity/contract/trade_page/visit", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "18c4f74a-303d-4a0e-a024-89a38cdc8981-0078", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1701" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.830907", + "url": "https://futures.mexc.com/api/v1/private/account/asset_book/order_deal_fee/total", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "f927cf72-4ad1-484d-8086-248b4fa50c2d-0079", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1702" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.831907", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "64219b06-e02b-4a53-8428-0bf5b66ece3c-0080", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1704" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.831907", + "url": "https://www.mexc.com/api/activity/contract/bonus/retention", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "4841cafd-0e48-47df-a7cf-eacff161d00a-0081", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1705" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.833908", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "76b5da1f-3ac1-468e-acda-10bfc09ba310-0083", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1708" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:29.833908", + "url": "https://www.mexc.com/api/operation/locale_currency_config", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "f4b4472a-a8a0-438a-bb68-f41290a8815a-0084", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1709" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.467433", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "92482d99-41f2-41f8-9485-3b96a0c53d59-0091", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1716" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.467433", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "1c2a0588-e790-4046-a12f-2bbda54fbd34-0092", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1717" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.467433", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "7acbad5f-f4bc-4d48-ac55-c01fcfe50e3c-0093", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1718" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.467433", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "42cc0d51-3e93-44f8-8b4e-819d567c0bf2-0094", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1719" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.468433", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ae70cd27-4d85-4e10-96f1-695a7685a9be-0095", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1720" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.468433", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "794a6480-adaf-4dbc-b2e8-e7733e7204f2-0096", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1721" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.468433", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8cf09caa-9f3e-4864-8ccd-f9358c1fa5ea-0097", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1722" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.468433", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2590cffd-0fcb-43ed-ab08-dedd1c8811ab-0098", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1723" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.470433", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "693202ce-d50a-43cc-8fb4-234bf85fe4f4-0100", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1727" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.471433", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=3&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "88ad730b-7768-4fd7-8fbf-0b70abf8c6e6-0102", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1730" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.471433", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "2cf8d696-9ec8-4cad-8152-af6bcabbc028-0103", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1731" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.471433", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "b8f4cbe6-17b7-42f3-b2e1-67f8eab26a34-0104", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1732" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.474434", + "url": "https://www.mexc.com/api/operation/placements/activity_cards", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "4ffeff0a-fabd-4ad3-ab64-723b7362362c-0105", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1736" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.475433", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "3002537b-414a-4bc4-be88-dba721d3b805-0106", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1737" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.475433", + "url": "https://www.mexc.com/api/platform/asset/api/common/currency/exchange/rate", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "ef4a0888-c2e4-4913-9c44-e5b759cf7e3d-0107", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1738" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.475433", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e94c5599-1d89-4a83-93a7-a6c55878a691-0108", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1739" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.475433", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/config?action=robot.", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "1735d90c-a5c6-4cbe-a262-47211b4ec3b9-0109", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1740" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.476432", + "url": "https://futures.mexc.com/api/v1/private/profile/kline/get", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2d276040-8145-424d-802a-fd25dc974496-0110", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1741" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.478439", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9ee6c77c-760f-442e-a439-7c883c168c27-0115", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1746" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.478439", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "7edbb83e-ef57-4c05-9780-604f32798f77-0116", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1747" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.478439", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9d50b87a-41ef-408c-830e-e13328e5f21d-0117", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1748" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.483438", + "url": "https://www.mexc.com/api/operation/placements/code/main_home_banner?category=NONE&platformType=1&locale=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8f0989d6-0d28-4a0c-8cdc-9f59ea943988-0119", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1751" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.483438", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "32aa641a-4f9f-42e9-8696-333cbfc9c563-0120", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1752" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.484440", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9b3687f0-d8f3-46d5-adc6-f43736b4c197-0121", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1753" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.484440", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "88b8422f-3fe4-4b40-99d8-4512409b04d3-0122", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1754" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.485440", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "c3cee2f4-c04d-428e-ac60-6e5288bb9ac9-0123", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1755" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.485440", + "url": "https://www.mexc.com/api/common/ping", + "method": "GET", + "headers": { + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "trochilus-trace-id": "383dd6af-29db-48c5-be39-294805b758e3-0124", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1756" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:30.486440", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "7fdab342-dda6-4fcc-ae99-670c31cf8c99-0127", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1759" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:31.112615", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "d99f0619-64d7-48b2-8bd6-e0c8b01fe2cf-0133", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1768" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:31.112615", + "url": "https://futures.mexc.com/api/v1/private/account/tiered_fee_rate/v2?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "82f00513-4532-4734-ade2-6ddb16049beb-0134", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1773" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:31.116616", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "ab25a85f-05d5-4d3f-a443-9c81a5422aca-0137", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1777" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:31.665265", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/list?lang=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "06b60bae-b11c-4443-a287-cc136717af86-0139", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1791" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:31.666267", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8295523a-efa0-4ab4-806d-6ff98d845b7a-0141", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1795" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:31.667265", + "url": "https://www.mexc.com/api/operation/popup/strategy/v2?platformType=WEB&lang=en-GB&zoneId=Europe/Kiev", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "89854e78-0e93-4de0-a075-948a04585f5f-0143", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1805" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.190533", + "url": "https://www.mexc.com/api/operation/global/search/config/default/coin", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "1fadb88d-fd83-4074-badf-8ebb915d5547-0146", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1810" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.190533", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492251", + "N-Uuid": "b8492d02-0d0e-482f-a8e0-46e0b64eb700", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "e5cf46392b6dcc5fd4537781a6ad4ed6", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "74e3dba9-2cae-45da-9c6f-be4e59b10ffa-0147", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1811" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.190533", + "url": "https://www.mexc.com/api/dex/v1/data/get_config_v3", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492251", + "N-Uuid": "54cd3cb0-28c5-4a13-ac14-5783f0de06bf", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "c0148a82a1838ff718d2fe93bd11a455", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "88a3a4e3-d04c-4241-b1fe-09f6b450845e-0148", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1812" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.192531", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/profits?lang=en-GB&type=INCOME", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "1fe6a502-b4da-44a4-ad17-f9c9b3da4067-0150", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1818" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.192531", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "6ea87a20-edfa-4ff4-a817-ddb4a7c74103-0151", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1819" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.192531", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e044e205-7971-4a8f-ad89-cd00aba4d8b4-0152", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1820" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.192531", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "daf65841-70b6-4317-8edd-c6fd9cf6d927-0153", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1821" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.705952", + "url": "https://www.mexc.com/api/operation/popup/config?platformType=WEB&lang=en-GB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "0299b5aa-5021-445e-ad2e-61600ebb939c-0155", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1823" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.705952", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "f5be69ea-4845-4280-aa55-4045e043fd1f-0156", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1824" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:32.705952", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8a4788d8-a43f-438e-8794-b44f5d75133d-0157", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1825" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:33.219580", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "67aebb28-0ce2-475c-9587-8dc38bfe8b78-0160", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1832" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:33.219580", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "10b2624e-fea0-4b20-8a69-81c6f8868352-0163", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1835" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:36.752971", + "url": "https://www.mexc.com/api/common/ping", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "trochilus-trace-id": "df8520eb-004b-4bd1-9dd5-c91eece406d4-0172", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1860" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:40.795599", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "5b0f2815-2a56-407b-bd1c-54055839c17c-0176", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1867" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.313406", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "cf39f028-2bce-440b-8032-a09527f0541f-0178", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1869" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.314405", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "db48fb06-b64e-4752-9014-3fe8d81b6fcf-0180", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1871" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.314405", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "970b6c2d-e053-4474-beb6-c616417ea866-0181", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1872" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.314405", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "1df715b7-809c-41e2-866e-a73fbf197361-0182", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1873" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.314405", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9c19950c-81b6-46ea-b918-94149a102ad5-0183", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1874" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.314405", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e7de8769-9c22-4329-a6c3-989501484f9f-0184", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1875" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.314405", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "ecd2907f-26ef-4ed0-93d0-c5910068a819-0187", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1878" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.315406", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "3d72660a-7234-480d-bccb-677a96cd50f0-0194", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1885" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:41.316405", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492261", + "N-Uuid": "9ffc13e9-4a57-4869-88be-f66e1726e12a", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "6d1d82d80f9eac7d995f4d7bd8f6f804", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "9a6a4f18-aa24-47af-9c25-0b528df2d98b-0200", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1891" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:47.456057", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "1e2b4d4d-c35a-46b7-a856-586cceb89f48-0208", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492268844", + "x-mxc-sign": "e8d01f6a1f8cf0a0f4c55f2c443598c6" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":1,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":1,\"leverage\":300,\"openType\":2}}", + "requestId": "205584.1911" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:48.974419", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "3b45dcd2-a18c-4952-bf16-4ec872dadf06-0209", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1913" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:49.479028", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "7645927b-3968-4227-9c3b-821e61d346b7-0211", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492270758", + "x-mxc-sign": "24b6fe6eec58df38b35b5682176fdfb9" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":1,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":1,\"leverage\":300,\"openType\":2}}", + "requestId": "205584.1915" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:49.982804", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "c87889a1-9760-4913-bf51-9b1bf6220fff-0212", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1916" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:50.491503", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "1eba8ee4-4770-4f13-b050-fac68695a845-0214", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1918" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:50.997151", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "85bf4da3-788f-4af8-b7a0-a7384c1585d7-0215", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1920" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:52.509909", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "f34739d9-c276-487a-ada8-f12aa57d4c9f-0218", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1923" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:54.529460", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2f9afcc3-7e50-4e92-9c02-dc1a6ab45f15-0222", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492275766", + "x-mxc-sign": "61c61a733566b3ed3d04e2b5c1bb54b5" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":1,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":1,\"leverage\":300,\"openType\":2}}", + "requestId": "205584.1928" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:37:59.586108", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "133eba72-291a-48e7-87d4-23616a2ea765-0226", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492280781", + "x-mxc-sign": "f836c020be379e1e78909f568f1e05d5" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":1,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":1,\"leverage\":300,\"openType\":2}}", + "requestId": "205584.1934" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.610352", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "5bb3af69-edad-42a0-9506-e86aeea19737-0229", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1938" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.610857", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "22b54784-c505-425a-a3c2-603e45f753ac-0231", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1940" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.610857", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "87a93d39-3dc9-4bf4-b8b4-c8364c75d1d1-0232", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1941" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.611862", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "48b1081f-4ba7-4304-bb12-c479e8fc6473-0233", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1942" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.611862", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "ee9c162f-33e8-498d-b8e9-16c4b876d453-0234", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1943" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.611862", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "c1efd314-8993-49e9-b1ea-ac266fd6cc97-0235", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1944" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.611862", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8732d5ee-5439-4e5d-a39b-26294fdd51a2-0238", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1947" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.611862", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "8f81915d-69e9-455a-9948-f2dac8ec319c-0245", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1954" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:00.612862", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492280", + "N-Uuid": "7a57ab17-623c-4a1e-8aa6-3bb85753a112", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "104b35ead12a89037bba03c8a87284b7", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "9db11b1a-54e4-441a-a9a6-cbba7410f107-0251", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1960" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:01.126636", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "7b0f7c98-4312-46d6-a8ec-7945ebb79623-0252", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492282126", + "x-mxc-sign": "e4ee621d041978de35f4aa4c9f686955" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":1,\"openType\":2,\"type\":\"5\",\"vol\":1,\"leverage\":300,\"marketCeiling\":false,\"priceProtect\":\"0\",\"p0\":\"O9xe7gUBWg+bHpKMr+jH1f4/nsbnVxIYXtiznC05Er8b6cm/HpzVHzOxa++3FHooVGjq7x6M6/mwqwQTvfYT6156hOkHQmV0Iy9BlcPE6uOrdQRbOriV6W6WEqnOOOyLwQM3iCg5j6N/kzicJ+kQQqG+13jwRcldaWgpJRAzs7azVzZq4KW9Em7Z5C83ah8tuVBDwbSIPzcjCzSQQhkzkf6gbtWL4DyVHSoY7gn1du7G6sOLSkQkxyLI0heUsjINOLNHHVZ0sepbcrlKZ98QBVeMBHZX7LPjx/DX7b3Z7LYr/SufHChrbQaLy6Qcs4WX9tOTxmzJ/JM=\",\"k0\":\"iPW6YNqrJLSmEFd7ZodwOarOArjuJ1TaVm0s1kppTfsGAr+DLSbltGkRZ+sXkV8GOXB/NIj+SVCQFJ5XuW5GSKIrKk4SUheY6dfHdgzU1+VViiQ2i5rHG9r78TOHkxJSPkJCtuCeCMc/tmqhvlrp0pSphGPH21y9SsY8HgJGi3tE2mWOk4BjviNY5XzRbkj44BHu9i91QpQsYvby2dbGOFTBSeb/mE1e5kTZoL2Q559+4ARmU1mcf36ikMyD9B4DPlRYv3M9VRrKjpP2lhg4kFdOT3umH14VZYpetRDHYU3tGbRvZbBECMr9nEsCnvtDrdJud6HpRXrClLIBtVFaPQ==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"tv1xchuZQbx9N0aBztUG\",\"ts\":1751492280633,\"mhash\":\"79272b3e18dfdee6bd49c50aaeaae1ed\"}", + "requestId": "205584.1962" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.openlong.ETH_USDT.300X", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiIzY2IzMzFjZjk4YmE0Zjk3YTY5ZjFmMWI4Nzk2ZTZhZCIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHM2VpVW11UXo2Y2lhTkhBZWVDemlzUE4xY00xLWZYTzBMbTlwZGdnLVBHeDBfbFZ0eFBkSnhlRV9aTUNwXzZsRkRrOHJUejJvNHNTallLbjJGVnRmRGhWQmwxNjZRQ2tadEd2ZG56Y2Z5dmd2QnZMNWJ1aXdPU0NnOU9najdJR1ZVLVJKS21zWlRQbzFZVzlST1pYdFFRTFFmVV9QYmRhUjg4SDJ5Y0gtdHI0dkVuX1hNN0x1UEVHR1Ayd2FSZnR2RFg3VjRYU3h4aVJXWlRXQ2pxVUpLVDl3Nkc3ZjZDSWo5MFg3U2ppZFJXUEpxWl8yblRFd3dYVFFHUUZOU1JRSl9MVkFyLXgxa1dTYzgzbHNVZXFuT1hTZUFCOGlfODJ0UlZGaVQ3VGlNNDd2ZnFFd3Z4QjFYVFJXa0gwSlJjQkNEM2RSVjBveUNFRkhxUW0ybWJiUjB2aFpVQ2o0MFZLUjNjdENoeXQ1SnhPUXhnVC1qbFUzUTlXVG00aUY1ZllxLWJ4V2lTa1duVktrWl9WRy1kYU53YmdEcGtpQ2dCOWNCNzhDRkViWnF0QWhybzJWRDU0R3hhdzZhSG01QkVtVCIsInBhc3NUb2tlbiI6IjdhYzEyZDQ0M2ExNzFkZmEyZjc1NmM3NGNmZGExZjI5NWI4NDRmMzVhZjc3ZGVmOTliYWRhYTRhNmUxOGU1ZjkiLCJnZW5UaW1lIjoiMTc1MTQ5MjI1MyJ9", + "content-type": "application/json", + "language": "en-GB", + "trochilus-trace-id": "7be73c75-2a17-4743-996c-8a7c786b6dd1-0254", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1964" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:01.662713", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "da76fb00-93ba-413a-8c9c-62aca7c20caa-0257", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1968" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:02.680583", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "68371974-7f68-4ac4-9956-fc515afff116-0259", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1978" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:04.198274", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "9f47c39c-b1b0-4c45-8ecc-e99f899e7255-0261", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1980" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:05.713480", + "url": "https://futures.mexc.com/api/v1/private/account/tiered_fee_rate/v2?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "153076b9-c790-4a89-85d0-e63fde869bec-0267", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1987" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:11.768953", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8ecdea1a-f899-437e-a573-d589a6d507e6-0270", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1991" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:12.272718", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "3f218798-5cc7-4aa4-9e7f-58408d8413a3-0271", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1992" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:12.777796", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "a999aaa6-f4f7-4043-b6bc-6594cef80acf-0272", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1993" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:13.785879", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "34df46bb-b366-47e4-b6d5-746a7af8c46a-0274", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.1996" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:15.799611", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "acb1bc1f-e537-4f6b-a59b-edf9b5546650-0279", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2002" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:27.410213", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "009128e8-62bb-4965-89ad-8efdcd57f436-0291", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2032" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:30.962254", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e6beed9d-e9f1-4666-9a58-3c80cf362612-0303", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2044" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:32.978652", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "2ea499d9-ebfb-4b3f-a634-0e1c3a1f26d3-0307", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2049" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:34.492035", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "09f34bd1-82cc-4f92-964e-4ec89ae84a1c-0310", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2052" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:34.995403", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ab14a6f2-0592-4da2-8905-de8002fac201-0311", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2053" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:35.506055", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1%2C6&page_num=1&page_size=20&states=3%2C4%2C5", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "76f7d235-8d59-4ade-b8a8-8c76a2e4b426-0313", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2057" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:35.506055", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "5c797761-15c4-4f3c-9276-e6d7b368dcda-0314", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2058" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:36.019138", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "3d2f2d36-6651-4ca4-ae25-786f414132f3-0316", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2061" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:39.061125", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "90c5d777-e437-482e-9315-ff7d8abf9786-0318", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2064" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:49.162642", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "408b22bb-a136-40e2-8bde-14e3abca0650-0325", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492330453", + "x-mxc-sign": "1ea82cbdc951a97ac77d2a642eeec55a" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":4,\"openType\":2,\"leverage\":300,\"type\":5,\"vol\":1,\"priceProtect\":\"0\",\"p0\":\"9niKOWMV8f/pXcKmoZ1w/+Po83VQyGSm7kDFqtihpTrlCys7bE3emuHRfUoukOvngxyJrbaGGXyd/yhy7p3VtfgKEfsi+9GR+VfcBy5qPtWdZjzifWFqQv6tlsFt4pxrTkna5px0vYdASLGOjQguqgWX9RsGE38QgjreT8QRIt6lH6fRNpGLtUUG1dK30omSV98VBLa6Xz2FP9ioOR37xA6J2ceZtb4GROTbfYT/TCsQUBFfZS4Cu5O6IIUB9KJ4c9wfdyX/UodUbD9YQU+2hTqUK/oECwdC92PChiKAtyZqMM8X0NqohMZjzpts5qu8MELJL+c6WzE=\",\"k0\":\"ellQ29OukiahusNb83QT2pqKaClspoSgQfIdvYQ0Jg3OcWpmQW7iGR/ZC/v2l7243X9FfmymSuUBr/vVTNcSZW4B5Lu8cqd22dNROJqRhSHW3dNFmCMtMRV7yzieecugot4H9gXlPACQdV6HKdyAllPg2beyT9qECxoEYX5mTaICDPr0EnDa+dA9lA7E8xdBNAxbb/JXpPWXbmfX5hIRa5BbAToOzpRhDOh0IRUFR/w4Bsm2DdjD/wnHWkKla1F4EzDJ4en0WJruefuKikx+DHD4DPIdB5tezAFpUZ2Fhx2Vo7FJNRF6g5SmTfNqDgXtjEuJjhqsScORheX/1VZijQ==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"tv1xchuZQbx9N0aBztUG\",\"ts\":1751492328960,\"mhash\":\"79272b3e18dfdee6bd49c50aaeaae1ed\"}", + "requestId": "205584.2074" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:49.668038", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.closelong.ETH_USDT.300X", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiI5OGJmMjY3YWEwN2E0OTNkYjIzMWEyNzYyMGJiNTcxYSIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHRjB1Ml85MjY3M1prakJ3dXFRLXlmS3VwaXVnNXpLeURaVFpEZm5GYXRMcW5fVW5kcFR4cTdnckNkQ1AyTkdZM1V2X0pLNS1tRGY3d01URlNUZDVnRlFRWHBwSGZuY1VPR19HY1JKcjFDcUxVQ2Q3TS1HMURjeF9faGZ1Tmh5RDA1N0JCbDJ4Um9xZmVadDVyeGxHN0pXLVJvemdkZzFhMzl2by1aRkVEeXE2NWMxZ3BOUmw3Smo5QXdnNFJEZE02a0pBS0RuZ0dmdHJ2dlRaUkFEbkNqS0tqN1pIbTlTdURCbWV5Nkg3NUhhaFBzTEFQTlpkbTRJWm1EVjd6VmVyUzlWZTFyNmtmLWhRLUJmWXYyeUt1T2VVa1Y4UXgtWlNNOTdWZUo1Tk5KaGRrR0RfNm8tbVdLNHM0ZFNnX0Nqa19XMlJnZzRBVFVMa0VuS1kxLTQ4M0c2X21TcHBXMjdNYzdnVDNRem5VU04xd05UNXlLamJmbXBMaDhaNV9zZkV6azUyVTRTYzRydFBJMk00NHRZaUxKTjdpQUh4eF8xZDZ1aDRudTBtcFUxOTRiOG0zQ2syRXJrcUxoMmM2aGUwZSIsInBhc3NUb2tlbiI6Ijk1YmUxNGVmODAwNzhkM2VkZTQ0OWMzZmQwMjdjNGM0Zjk1M2M3NjVmYzFmYWQyMTJkZjgxMGVmZTU2ZTFhMTIiLCJnZW5UaW1lIjoiMTc1MTQ5MjI4MiJ9", + "content-type": "application/json", + "language": "en-GB", + "trochilus-trace-id": "5d08d6d7-a154-403e-b939-ed4212563d7b-0326", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2075" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:50.171364", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "36ae5ab4-8aeb-4aba-90a4-89d5e4dc1cb0-0329", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2078" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:51.207025", + "url": "https://futures.mexc.com/api/v1/private/position/list/history_positions?page_num=1&page_size=20", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "7f8ffd1d-d7e1-4f05-95f1-d68572ff7176-0332", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2081" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:51.207025", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2f4f27a9-103e-419c-a279-0341271d1317-0333", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2082" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:56.751304", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "93a956dd-5fbe-4e58-8831-75656d47db5d-0337", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2088" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:57.758639", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "a473815c-2a51-408c-99e6-e2b9831ae023-0338", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2089" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:58.263700", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "f9cf0522-7356-4b57-a873-cf6240dc0e82-0340", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2092" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:38:58.767353", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "de2770ae-855f-41e9-a856-2086109390e1-0342", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2095" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:01.833880", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "66540592-b3f4-458d-bb9d-60586628b307-0345", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2098" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:02.861138", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "23a54ce2-dbb9-4614-89c3-e5d3d32391a5-0347", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2100" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:13.463083", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "c28a538e-1132-434c-9099-aa7c8e4c8181-0351", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2106" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:19.504541", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "01017a21-df58-484e-834c-751c19bd83ed-0357", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2114" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:20.008636", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8f34bf93-937a-4a7d-bc18-06614a036627-0358", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2115" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:21.015098", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "b2ef8667-e410-49b6-928e-ccd54ac3a4f6-0359", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2116" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:21.521533", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "9c0ed8e3-c4a4-40a5-aa89-89d2f9546828-0361", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2119" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:25.059096", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e4431bc4-60aa-4e57-9acd-9e540480ec3e-0364", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2123" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:31.632721", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "6f413a22-619b-42d7-8f87-1b4396ce28f8-0376", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2136" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:32.641906", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "a7edf598-0a11-416c-ba16-25205194260e-0379", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2139" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:36.690782", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ba1895b3-23fd-4a3d-9888-b881797c1aef-0382", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2143" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:42.271004", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ed316150-a93a-4874-a250-3e53ca987d5c-0387", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2149" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:42.775612", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "256da45d-c832-4ca6-92a4-9b139c4642e7-0388", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2150" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:43.279862", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "caa9dbe4-8ab1-4dc4-9841-88773a9ecc37-0389", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2151" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:43.802219", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "b2b585c1-4898-431c-897a-1e74d8b30ab9-0392", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2155" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:39:48.400629", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e15ec3ab-4517-4f40-a785-8b93d35b89e6-0395", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2159" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:00.188822", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "524932ea-1b56-4848-a4db-747172a8874d-0400", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2166" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:02.781648", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9a72bf3c-9d65-47cc-a988-97e0248a80cf-0405", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2172" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:04.293036", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ed4de75f-7fd3-420e-8205-f5c612a8781c-0407", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2174" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:05.350071", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "68baeaf9-33fd-4473-a0eb-57591e8138ce-0408", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2175" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:05.869979", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "37aa728d-bcaa-4a06-9c10-625619dd3a30-0409", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2176" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:06.374284", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "aed0b812-df8e-49c2-bde4-b4a2fff1429e-0411", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2179" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:11.565810", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "eb7b87ae-598a-4596-8aff-ecb40aa9ffc8-0414", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2183" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:23.461830", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "758179f9-f822-4c32-be24-71201fc42aa0-0420", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2191" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:27.005212", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "3a61365c-2a14-4610-8909-664e07bf1fa2-0425", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2197" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:27.510914", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e4e4f329-e57c-47b4-b4f3-12c8a31c636d-0426", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2198" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:28.551948", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "251dc827-708a-4752-8ec5-3e6cb58a2900-0427", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2199" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:29.056214", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "1241c585-7e63-48c5-8101-b9ef43057337-0431", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2204" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:32.088987", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "7781c513-7e67-48cb-a67a-fdf3cc1f18f5-0441", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2215" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:33.120278", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "3a8928c6-4fff-4be1-b5a3-62e6d8882dff-0442", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2216" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:34.632316", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "b07c6a5d-cbf9-4b63-948e-01fa5a93c881-0446", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2221" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:46.229891", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "4661029a-ec23-4345-a1c7-2d1916d3cdea-0452", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2229" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:49.793303", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "5240b4f7-7788-4e4c-b82c-40773706e818-0456", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2233" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:50.296238", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "71fec3b4-42f5-4f26-9ad0-d4150b378231-0457", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2234" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:50.802656", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "d8c3bd80-1208-4d76-a76f-f9cbb49fe7a1-0458", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2236" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:51.307299", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "4a912113-f16e-4971-94ae-9ca39bf7bb06-0460", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2239" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:40:57.866270", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e452b2ed-5476-4a65-a6e2-aa20c7c3e279-0463", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2243" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:02.964231", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "422d44b1-0f3e-4c18-957e-1b2b44f51cce-0469", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2250" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:09.682226", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "7f452d44-d9c3-4200-a56f-ff4ce597294e-0471", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2253" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:12.199121", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "7d1aac4e-3698-44b5-9472-287df24fb572-0475", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2258" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:12.703780", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e8b64e0d-059d-4cce-92cb-dabc328906a1-0477", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2260" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:13.711071", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "cf598b60-c3e5-43e0-bf28-4c2936eb2daa-0478", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2261" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:14.214391", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "fc254244-560c-446c-b170-5ab61fc5323f-0481", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2265" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.309042", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "c0ca304a-22c4-4757-a511-6fba08526581-0484", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2269" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.853419", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "d5bef40a-da6f-4db7-a558-08d6887b50dd-0488", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2273" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.854418", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e448fc22-c295-4a8d-bfc3-11febf4230f2-0490", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2275" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.854418", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "c57184f9-3bca-4dd2-893d-76e8a92503dc-0491", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2276" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.854418", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "85806e91-2504-4ef3-bef4-73333165e570-0492", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2277" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.854418", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e73272ad-c828-4ce3-857d-ffd100eef41d-0493", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2278" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.854418", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e728e5da-be0f-42d1-90c2-1aa8b09443bf-0494", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2279" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.854418", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e75497c5-8610-4e21-90f8-e08c93ea0a68-0497", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2282" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.855420", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "5c1b620c-9abf-4410-b0ff-7db4a2b25c07-0504", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2289" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:21.855420", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492481", + "N-Uuid": "de89c688-4e69-44aa-a078-6908a4f7f29d", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "5cf5b59e85036209887701dcae62fd94", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "406ee19a-e9b4-4111-9eab-1570d47870fb-0510", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2295" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.061870", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "7dc13b2d-83d4-4eb8-95cc-cf410ddc0f0d-0520", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2318" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.061870", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "e18d69c4-655c-4d32-a74e-a7316ada4558-0521", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2319" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.062870", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "463284e2-b49a-44b6-b766-87c5cdf43795-0522", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2320" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.062870", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "43a9d756-0f34-4167-bb2f-d66fd92c05d3-0523", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2321" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.062870", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "8b23de32-da5f-4bcf-887f-011cf5cc9e4b-0524", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2322" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.062870", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "af098e06-00a0-4e4f-8006-d47fd7017de8-0525", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2323" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.062870", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "a3671de6-4e12-4592-bab1-31cf51309a62-0528", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2326" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.063870", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "6b75cf44-43fe-487d-9fe1-19bba69b15f2-0534", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2332" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.063870", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492491", + "N-Uuid": "b6780cf2-f575-4c9b-b11f-1366eee90d22", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "96e40626a9b70ac80618becc625dea1c", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "1a14c42e-81c0-49e1-b4ae-ffccbd18bc45-0540", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2338" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.064873", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "4d124f53-5dbb-4210-bdb5-4726938849e3-0542", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492493472", + "x-mxc-sign": "d59192efdf97170e66c56f58e175e155" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":1,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":1,\"leverage\":300,\"openType\":2}}", + "requestId": "205584.2340" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:32.580008", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "814985c7-1188-4cce-9a8b-6d327c017294-0543", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2345" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:33.091432", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "ac7f4314-a0df-4068-9cb1-ba302d6fdaa2-0544", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2349" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:33.091432", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "6d87e84d-b1fd-4167-abcc-bd85a21e1af7-0545", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2350" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:34.618561", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "bacb0ac9-7dae-41ce-80af-22e79227911b-0552", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492495622", + "x-mxc-sign": "780b72d96157cb7d8b550b5caec7dbcf" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":1,\"openType\":2,\"type\":\"5\",\"vol\":1,\"leverage\":300,\"marketCeiling\":false,\"priceProtect\":\"0\",\"p0\":\"ETi4orZUtmRLyS5D9v5d10s9hHi4esaFqt1jdYjagA2N4pZAYYiCKa9z3fozaotBRkRIvRTWLJ4vEatr2pX/+CK9qJDpaDu2KnE08EjG/baDSpBAzPj2btNQ2MOqOcAjJoGBsnA+mIpx25DSAjCEnUAY1/o6rJok5fNWaknW0PhaXsFkVLweVL7zVeoy+e175jib3kRnd/srkWBim5gPPJowvI215O07lC8kcskfAge7A6gxAP9g5V7Rq+t45wpXTSVLoibU/OjPIQeH8ouTyTMeD73QlPBTepaHPsgURYR1AksTA8KLtEjAXnus1sFf3J+Q2V+nIdk=\",\"k0\":\"fp7E1SYALdFyQ5Hp9uErhO3sLSlE69wTZDRxSXqAIrrlpNhXQj5yehBfl07YOmO1o0ZYph9DVH/xg4aKky4h3cGT7uCDkqJknNxt6eoHYP7BFYaRs2L28jXbwIlpaTjREKPVkoHfkMUydmM3fdDfdgfEWl5iXO3YzwmuiRIoYUF2EBmjsiMnwUd6McUFVTjV+hbfvuKsGcq7veDl9NRHaDjJqrzpKjoQpQ7eL3TMX4oxxVxai+kotlfYjYPizwbefiIMMydSLoT3xgWpM3l9rjk4RV4JrNIO9xs/lqvl+E33VW2GcLBT+lHK5z+Bym/hyBpRLQluuUlGjYcoGS0ckg==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"tv1xchuZQbx9N0aBztUG\",\"ts\":1751492494201,\"mhash\":\"79272b3e18dfdee6bd49c50aaeaae1ed\"}", + "requestId": "205584.2359" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:34.619559", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.openlong.ETH_USDT.300X", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiJlODMwZTEzOGNkMWU0MjNkYTBiMWJjNmQ4ZTgyZmU1NiIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHVmtpN2NqU29KWHpHMU5JOS03Yk02My1DbnhOZHFSME8wOFR0Q2xqWGZXSEFwelo5dEFaYXV1NjZIQzFfX2RVV3kwZ00yOWliYXB5em5mWVpXZ2JJRXNneDUzaDZ2N3RfdEpPemZXYWZFUXJmaXNSUm5ScDl5NVh0TWhoQVZkaUxQRjV0bWRIYlFEZWJlUnl4cFplX1BCTElTbktWdEZ4MXd4cGhHVzU0cDc5NG9pYXBOUGsxYWNKNWZ5VzNPX054Z1M2cEFTWFFTMWZYU2NROTFOR2RTUDBEMjktQk1wbEdRZjhzNDdNamZsaF93LXlSWVBETER6dVhoc1NfYlRDcGdlTll4VWwzZHE0RFpLaFh3cndzSFFnRjN3Z1llbW5ONGNJcDJVZWdOVlpJYzZRYXIwaGxZNlcya09hMjl3aGJJLUtXZWVLd1c3SHRvLUp3NXh4WGJUZk56ZWZjc0g3eE9IdGVPcVdxd2dway1FLUE1bHEwYjZ6aG1Tdktqbmlndkh0NEN3RFU3Vm13LXNZYmZqSFdxa19RZVZ5SnZSVHpJc0xOZlk4WE9hbWRuOG1JWk5LcXFHVE9xMHBYRnVmNSIsInBhc3NUb2tlbiI6ImRkNmEzNDI0ZDI4MjIyY2ZmZjhlOTJlMWE0M2NkMTY1MTFjMzhhOWYyY2FmYTk0ZTRiYjc2ZTlmZGVlNmFjOWUiLCJnZW5UaW1lIjoiMTc1MTQ5MjMzMSJ9", + "content-type": "application/json", + "language": "en-GB", + "trochilus-trace-id": "8b3c61fd-cf26-483a-bdc4-7bad73cb7162-0553", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2360" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:35.137908", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "d0073ab0-6aea-43fa-8158-c5bb73170b9d-0555", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2362" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:35.658085", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "e1c833b7-f0e4-4f89-9228-cf7cbf7beada-0558", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2365" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:35.658085", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "feba3a5e-b26a-4f11-8eaa-46a14348d4d9-0559", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2366" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:36.667088", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2eb44296-af46-430d-be30-c8366fcc9dc8-0561", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2369" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:37.172393", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "7259c836-76f6-4c17-aa9d-e8d06a71a0f8-0562", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2371" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:44.316609", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "d7585c26-032a-465f-a48d-fa97fb8317c6-0570", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2397" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:46.867820", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "method": "POST", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Content-Type": "application/json", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "dddc63b2-860b-4b02-8d51-0ac2d720d5a0-0576", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751492508164", + "x-mxc-sign": "688743426da53bb55b4c12b339ab542f" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":4,\"openType\":2,\"leverage\":300,\"type\":5,\"vol\":1,\"priceProtect\":\"0\",\"p0\":\"wFBvUTWeJRjRKdLplO94IJXOM2zLRkdqvhFtXSanwuxaw+yX3Bd7kNMfavRF8F2g09gOzLj1X7XAbfd+cacdzuBcSD3fJtY0sK6YXstzdXYMprdJlsbQHQALbtEp+FYt+4w8dSFAbyXf2sRYCzQ9hpLMT3+h+LGfgW7hq3GRygw+EY9vx1Ye1Q1sB8O8x/woJUhxCWnwA4OYE6iaq5z2rae0b9eDqAy6R3+axKrjnToOmL/tl12haLWfDdjsRVNeCDSbje8PnKY/Qn8PQCO3Lcs+g6vVJ70O0XvvvRDG2mVTQ9XekM126fMZuxL23v+7XdTTnJp60FU=\",\"k0\":\"SFTSD0oG1pBTQ4zgcZfzDVrlqcZKuJ8CRuaEWA4b488Qi7s1z7vl3xmxml4D9uNOK52va83CyZFMCf/A8wigrDgxVc1oIvUGUNjU5DNmElJ4208qwoN9rIfT4ZJf/76UfvovdyDNotl5bpZeTmmeljZbt14M7oCF4a8FDQzHwtuvYPsS+hHURL2LAYE7UsUlHh0EFwBQf/VFdCMOcO5pgf0NcZXcAHt+p/6pDzGdpYX8nZ1d0wW1GFICje5gyAg7Rkx6YgUkRUwQMk7iRMON2XXyx9k9aN3K/SRv3a8rRCwUGnrOrX2TGcsj4INwdUxzxxTPeKXjYMt/Osryh1OxMw==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"tv1xchuZQbx9N0aBztUG\",\"ts\":1751492506691,\"mhash\":\"79272b3e18dfdee6bd49c50aaeaae1ed\"}", + "requestId": "205584.2404" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:47.386549", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.closelong.ETH_USDT.300X", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiJmMDE0ZWM0MjAwYTU0MjkwODgyNzdhNzBjMTBiOGMwZiIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHbldMdlRhR3pNaUs4elU0RTVlMTJEdkQ2TTg0RHlxZW9uWmZTckVMZ0c0WEFfWW9RVHpaS0xFcGpXUHZLZHdEV0p1Q0hkcU5hWlNCNGJHTGRRbmp3ZllsUWc5cGtHZS1BNkR4RkRhNFhCS1hhVGxfcHNwR2NSNW9PZlFMRUtJN2FoX2pYM09PcDdITURLUXEtQzdhNGxfdzlzaDRXWlF1S0tGb3pMbkNMZXdodWg2ZjhDUkhyODExZzZWMGpLV0VBb2FQUWxXVFgyUXplLTZ6OFFBR21NTFdIVjIyM1dsZWRObDJmZmFRNGFUbHRQTTV5MnRUUFBIc19MYWFIbGxRNXFoNWl5YjkwRjRHSjNhVXh3ZzdDRXFmWkp1SjEzVVh3NTA2N3hQV1ZhUG81bjhUZXNNamt5N3l1NGRmME5Hb1RiSFZseGozSm1obGxBQ3RzN3dBeDNMMV9DUlM5M1lRczNkZV91dktIcHF5U05NMjVUbTQ4WmNjakNwdUZJNnpya25ncWlJc1VpeDF4RmRBTXNVRmtfYWNHY3h4em5jWkpwZktJelc2bUVTa19qaXlvZW03UnZiS09DcTJBVF9VSSIsInBhc3NUb2tlbiI6ImQ0YzU5NDgzNDNkNjU3Yjc3YmZkMmRlZGMyYTdmYWI4ZTI4YTI1MTM0OTNhMTNiYWFjMzgxMDg0NWIwNmFjNzMiLCJnZW5UaW1lIjoiMTc1MTQ5MjQ5NiJ9", + "content-type": "application/json", + "language": "en-GB", + "trochilus-trace-id": "768a8f81-a99f-4e36-a92c-94a723061d0e-0577", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2405" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:48.935842", + "url": "https://futures.mexc.com/api/v1/private/position/list/history_positions?page_num=1&page_size=20", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "cb2721d4-45ad-422a-ae9a-c1160468c591-0581", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2409" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:48.935842", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "758389bd-9953-4e44-a37a-81a45a7af0cd-0582", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2410" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:49.467359", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/profits?lang=en-GB&type=INCOME", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "45b5b4ca-1d90-430c-8b96-ed41ef1da387-0584", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2414" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:50.482784", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751492510&interval=Second1&start=1751491510", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2d2a0025-16bc-4803-ba53-51ef48fd09fc-0587", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2420" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:56.020850", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "f8a0a31e-9152-429a-a111-6c8206fa2854-0590", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2425" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:58.042716", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "d020c3cc-7bba-4c2b-b988-1b662519e463-0594", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2429" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:58.547859", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8f4015c4-7843-4a55-92ed-5eabdb0c5366-0596", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2431" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:59.050962", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "38f23c7f-c280-4147-a287-f6f910f9342e-0598", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2433" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:41:59.559235", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "5bdd9947-1044-4502-81e4-c6af5c0a4cff-0600", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2436" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:02.615918", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "086cbed3-cb5c-49d8-941f-5a6992436b0e-0603", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2440" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:07.679327", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "8ed31b12-aabc-4056-9761-c75ab5b2b0f3-0605", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2443" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.757585", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "a58c684f-6a2d-498a-8657-01d02ea106bf-0612", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2451" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.758581", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "df87cd37-44f9-40ae-ba19-48a43312770b-0614", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2453" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.758581", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "119af925-3863-47f2-84e0-c3c00c468a37-0615", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2454" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.758581", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "5139ccc8-f03e-40cd-bd04-487be0448734-0616", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2455" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.758581", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "9facac75-5476-4c1d-ba63-0188ef18c8cc-0617", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2456" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.758581", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "be0430f8-9458-4477-a343-0911423d90af-0618", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2457" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.758581", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "3a0b0226-c75b-4fd8-84b8-aa2e62bc0a59-0621", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2460" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.759580", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "timezone": "UTC+8", + "trochilus-trace-id": "84a1e199-53b2-4296-9610-df31f8873fb8-0628", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2467" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:13.760580", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751492533", + "N-Uuid": "ecd85bc1-c765-494b-83bf-31bc4bc95735", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Signature": "7e9a4173dd16851b6b0f7de43f9c9309", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "tv1xchuZQbx9N0aBztUG", + "trochilus-trace-id": "948e216a-b05e-429e-940d-272eb2b8efb7-0634", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2473" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:19.312405", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "dfeb157e-be7d-4b00-9192-05b652901f79-0639", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2486" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:20.328116", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "6be0ecd6-1524-40c2-a68c-3508771807ba-0642", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2489" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:20.831733", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "5e2f9eeb-3ea8-4a9b-b13b-9ab2a8fa445e-0644", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2491" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:21.888465", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "52875712-442e-498f-b179-b8ed1d6ba18b-0646", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2494" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:22.394117", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "b0bb4648-153e-4964-ad82-aaefb9a7a337-0648", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2497" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:30.469321", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "b67f0811-7236-420b-a6f9-a126d4fcd3d5-0654", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2504" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:33.021266", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "1a60b51f-c013-4ddd-9953-20939fd94fc5-0662", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2513" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:33.533813", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "4b402075-c170-460e-8916-473d0f642e87-0665", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2516" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:42.126964", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "71dc171d-017c-4f63-9e93-51710d375512-0668", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2520" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:43.134936", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "2137f31b-e70b-4364-a9d7-d6cc6da80aff-0670", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2523" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:43.640164", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "78934be8-3d50-46d1-ad6f-dca68d25b9f8-0671", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2524" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:44.145310", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "4a19f3df-f763-4561-9a71-0766bba373cc-0674", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2527" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:44.686423", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "faf6915b-e489-43a3-b399-9bc7304ebaa9-0676", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2530" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:42:53.831329", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "b0a92551-749b-46bb-a422-d99819b41d94-0679", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2535" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:03.060661", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "c16b34c5-53e7-4639-889a-8ddde666f0c4-0688", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2545" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:05.585769", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ac2822a3-8630-4235-8439-25c4c857bee8-0690", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2548" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:05.585769", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "1cd15a75-ecbd-4f22-bd78-115854c25837-0691", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2549" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:06.089989", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "618ddc2b-93bb-4cf2-a99d-1dcd272a1108-0692", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2550" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:06.596436", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "ea79db63-3f41-411c-8b68-fe7dd454f7d8-0695", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2553" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:07.604079", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "efed2b00-9e73-4df6-8946-da1c0009e9b0-0697", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2556" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:17.195199", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "86a660a7-319e-4c83-8509-3466f2c1262a-0701", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2562" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:28.288843", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "920e3075-184a-4221-b70f-5aa1c012c001-0706", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2569" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:28.794101", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "d24a7071-0467-445a-9be6-3b94cf56a469-0707", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2570" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:28.795102", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "c0794b80-3838-49ff-b855-f09d8580a436-0708", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2571" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:29.300187", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "1a8d2fe0-6759-42c6-b2b6-d48c4022d6ee-0711", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2574" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:29.805264", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEB66f893ede865e5d927efdea4a82e655ad5190239c247997d744ef9cd075f6f1e", + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "bd013635-6263-404f-a26d-ddb512e682d0-0714", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2578" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:32.905957", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "7d7ac980-187e-4d35-928a-21e52c749a03-0721", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2586" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:34.419109", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "method": "GET", + "headers": { + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "language": "en-GB", + "trochilus-trace-id": "61c64536-3c30-45b8-8537-cea65ed33e07-0726", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2591" + }, + { + "type": "request", + "timestamp": "2025-07-03T00:43:40.512533", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "GET", + "headers": { + "Language": "English", + "Pragma": "akamai-x-cache-on", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "trochilus-trace-id": "a10e6efc-ffce-48de-9201-4f539d8b15dd-0729", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "205584.2595" + } + ], + "responses": [ + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.770944", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492191.2387d804", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:31 GMT", + "expires": "Wed, 02 Jul 2025 21:36:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=5, ak_p; desc=\"1751492191460_3563037988_596105220_28570_17938_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.339" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.773944", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492191.2387d954", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2567", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=10, ak_p; desc=\"1751492191745_3563037988_596105556_29063_21734_24_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.399" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.779945", + "url": "https://www.mexc.com/api/activity/contract/activity/country/amount", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492191.2387d822", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "59", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=836, origin; dur=6, ak_p; desc=\"1751492191488_3563037988_596105250_84510_19650_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.352" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.779945", + "url": "https://www.mexc.com/api/activity/contract/coin/introduce/v2?language=en-GB&contractId=11", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492191.2387d823", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "844", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=840, origin; dur=7, ak_p; desc=\"1751492191486_3563037988_596105251_84870_21637_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.353" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.780945", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387db0f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=72, origin; dur=0, ak_p; desc=\"1751492192146_3563037988_596105999_7347_20893_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.421" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.780945", + "url": "https://www.mexc.com/api/activity/contract/home-menus?language=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492191.2387d808", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "664", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=874, origin; dur=9, ak_p; desc=\"1751492191460_3563037988_596105224_88283_18336_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.349" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.780945", + "url": "https://www.mexc.com/api/common/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492191.2387d825", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=859, origin; dur=6, ak_p; desc=\"1751492191486_3563037988_596105253_86699_13945_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.354" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.780945", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/hidden/symbols", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387dafd", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "424", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=294, origin; dur=6, ak_p; desc=\"1751492192130_3563037988_596105981_29948_23695_41_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.417" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.787947", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/symbolsV2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387db0c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=286, origin; dur=7, ak_p; desc=\"1751492192146_3563037988_596105996_29392_20803_30_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.418" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387dd97", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:32 GMT", + "expires": "Wed, 02 Jul 2025 21:36:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=291, origin; dur=6, ak_p; desc=\"1751492192639_3563037988_596106647_29815_22068_19_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.464" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=3&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387dd95", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=118, origin; dur=227, ak_p; desc=\"1751492192639_3563037988_596106645_34632_22131_17_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.462" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387dd96", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=133, origin; dur=223, ak_p; desc=\"1751492192639_3563037988_596106646_35770_22085_17_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.463" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/meme/coins", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387db0d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9205", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=858, origin; dur=6, ak_p; desc=\"1751492192146_3563037988_596105997_86465_20892_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.419" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/api/operation/placements/code/main_home_banner?category=NONE&platformType=1&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387ddf3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "962", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=298, origin; dur=7, ak_p; desc=\"1751492192709_3563037988_596106739_30652_27781_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.470" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/api/platform/asset/api/common/currency/exchange/rate", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387de32", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "396", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=283, origin; dur=5, ak_p; desc=\"1751492192775_3563037988_596106802_29007_24349_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.480" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/config?action=robot.", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387de33", + "cache-control": "max-age=0,must-revalidate", + "content-length": "183", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=296, origin; dur=5, ak_p; desc=\"1751492192774_3563037988_596106803_30257_24679_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.482" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.788944", + "url": "https://www.mexc.com/api/operation/locale_currency_config", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387dbe6", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "277", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=853, origin; dur=4, ak_p; desc=\"1751492192323_3563037988_596106214_85808_19015_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.454" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.789945", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492192.2387df23", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=309, origin; dur=6, ak_p; desc=\"1751492192971_3563037988_596107043_31511_31356_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.474" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.790943", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492193.2387e0d6", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=5, ak_p; desc=\"1751492193337_3563037988_596107478_29351_26398_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.477" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.792944", + "url": "https://futures.mexc.com/api/v1/contract/support_currencies", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e259", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "121", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=125, origin; dur=0, ak_p; desc=\"1751492193685_3563037988_596107865_12553_10389_6_0_219\";dur=1", + "x-cache": "Miss from child, Hit from parent" + }, + "requestId": "205584.223" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.792944", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e261", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=123, origin; dur=0, ak_p; desc=\"1751492193685_3563037988_596107873_12356_22487_6_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.453" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.793944", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e317", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492193841_3563037988_596108055_74_26281_6_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.479" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.793944", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e25e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:33 GMT", + "expires": "Wed, 02 Jul 2025 21:36:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=51, origin; dur=226, ak_p; desc=\"1751492193685_3563037988_596107870_27777_10199_6_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "205584.221" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.795945", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e25d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "323", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=125, origin; dur=226, ak_p; desc=\"1751492193685_3563037988_596107869_35184_11149_5_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.337" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.795945", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e3ff", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "323", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492194059_3563037988_596108287_52_17416_5_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.497" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.795945", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e258", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=81, origin; dur=230, ak_p; desc=\"1751492193684_3563037988_596107864_31124_10399_5_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "205584.222" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.796945", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e26b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "129", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=165, origin; dur=230, ak_p; desc=\"1751492193696_3563037988_596107883_40749_12598_5_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.338" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.799944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492193.2387e2ad", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=126, origin; dur=225, ak_p; desc=\"1751492193757_3563037988_596107949_35268_28285_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.488" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.800944", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e452", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "129", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492194129_3563037988_596108370_50_15498_9_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.498" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.800944", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e25b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82827", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=173, origin; dur=238, ak_p; desc=\"1751492193685_3563037988_596107867_41132_9959_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.336" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.800944", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e2af", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82827", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=339, ak_p; desc=\"1751492193758_3563037988_596107951_34021_14434_9_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.492" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.800944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492194.2387e47a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492194168_3563037988_596108410_955_24837_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.489" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.800944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492193.2387e28e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=230, origin; dur=220, ak_p; desc=\"1751492193729_3563037988_596107918_44979_25852_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.487" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.800944", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e49a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82827", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492194206_3563037988_596108442_556_13640_9_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.496" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.801944", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e2ae", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=152, origin; dur=234, ak_p; desc=\"1751492193758_3563037988_596107950_38711_14514_8_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.491" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.801944", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e25f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=605, origin; dur=5, ak_p; desc=\"1751492193685_3563037988_596107871_61053_12831_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.319" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.802945", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e25a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "767", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=608, origin; dur=5, ak_p; desc=\"1751492193685_3563037988_596107866_61363_25461_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.351" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.802945", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e268", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3061", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=605, origin; dur=6, ak_p; desc=\"1751492193696_3563037988_596107880_62284_22262_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.471" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.802945", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e269", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "666", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=618, origin; dur=5, ak_p; desc=\"1751492193696_3563037988_596107881_63532_12754_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.397" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.802945", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492193.2387e26a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=615, origin; dur=5, ak_p; desc=\"1751492193696_3563037988_596107882_63167_22116_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.478" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.805943", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e4f8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=59, origin; dur=218, ak_p; desc=\"1751492194306_3563037988_596108536_27687_15627_10_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.527" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.805943", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e517", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=249, origin; dur=4, ak_p; desc=\"1751492194331_3563037988_596108567_25325_14667_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.481" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.805943", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e540", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "681", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751492194374_3563037988_596108608_24329_14080_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.499" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.805943", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e541", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=256, origin; dur=6, ak_p; desc=\"1751492194374_3563037988_596108609_26301_23530_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.493" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.807945", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751492192&interval=Min15&start=1750592192", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e625", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "33807", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=11, ak_p; desc=\"1751492194581_3563037988_596108837_25129_13489_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.539" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.808945", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "855", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:34 GMT", + "expires": "Wed, 02 Jul 2025 21:36:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"success_fraction\": 0, \"failure_fraction\": 1.0 }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=354, origin; dur=7, ak_p; desc=\"1751492194497_3563037966_723997103_36181_24541_8_32_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "02ffde0186d4b61b" + }, + "requestId": "205584.340" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.808945", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492194.2387e6dd", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "465", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:35 GMT", + "expires": "Wed, 02 Jul 2025 21:36:35 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=242, origin; dur=6, ak_p; desc=\"1751492194737_3563037988_596109021_24775_15537_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.542" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.809944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492195.2387ea66", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:35 GMT", + "expires": "Wed, 02 Jul 2025 21:36:35 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492195557_3563037988_596109926_163_20696_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.558" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.809944", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492195.2387ea67", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:35 GMT", + "expires": "Wed, 02 Jul 2025 21:36:35 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492195556_3563037988_596109927_97_21438_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.559" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.810944", + "url": "https://www.mexc.com/api/operation/global/search/config/default/coin", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492196.2387ec84", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "220", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:36 GMT", + "expires": "Wed, 02 Jul 2025 21:36:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=8, ak_p; desc=\"1751492196023_3563037988_596110468_28857_25854_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.563" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.810944", + "url": "https://www.mexc.com/api/dex/v1/data/get_config_v3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492196.2387eca5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1618", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:36:36 GMT", + "expires": "Wed, 02 Jul 2025 21:36:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=11, ak_p; desc=\"1751492196052_3563037988_596110501_29908_27957_6_0_219\";dur=1", + "traceparent": "00-739336e1e906c99943d8170a11207ed6-84c174b0d6ca1dab-00", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.564" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.811943", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/list?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492196.2387ed75", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "550", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:36 GMT", + "expires": "Wed, 02 Jul 2025 21:36:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=276, origin; dur=5, ak_p; desc=\"1751492196204_3563037988_596110709_28137_28287_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.566" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.813945", + "url": "https://www.mexc.com/api/operation/popup/strategy/v2?platformType=WEB&lang=en-GB&zoneId=Europe/Kiev", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492196.2387edeb", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "5510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:36 GMT", + "expires": "Wed, 02 Jul 2025 21:36:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=173, origin; dur=231, ak_p; desc=\"1751492196279_3563037988_596110827_40482_30357_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.567" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.813945", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492196.2387efca", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:36 GMT", + "expires": "Wed, 02 Jul 2025 21:36:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=4, ak_p; desc=\"1751492196670_3563037988_596111306_24120_16953_5_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.574" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.815944", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/profits?lang=en-GB&type=INCOME", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492197.2387f26e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "694", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:37 GMT", + "expires": "Wed, 02 Jul 2025 21:36:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=284, origin; dur=5, ak_p; desc=\"1751492197227_3563037988_596111982_28937_27597_5_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.575" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.816945", + "url": "https://www.mexc.com/api/operation/popup/config?platformType=WEB&lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492197.2387f337", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1036", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:37 GMT", + "expires": "Wed, 02 Jul 2025 21:36:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=6, ak_p; desc=\"1751492197445_3563037988_596112183_29390_24440_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.582" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.827943", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=3&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8da", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:38 GMT", + "expires": "Wed, 02 Jul 2025 21:36:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492198716_3563037988_596113626_598_24808_31_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.817" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.828943", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8dc", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:38 GMT", + "expires": "Wed, 02 Jul 2025 21:36:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492198714_3563037988_596113628_354_27266_31_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.818" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.832944", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "856", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:38 GMT", + "expires": "Wed, 02 Jul 2025 21:36:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"success_fraction\": 0, \"failure_fraction\": 1.0 }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=7, ak_p; desc=\"1751492198686_3563037966_724002742_24801_20756_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "5ed38c47816e9f33" + }, + "requestId": "205584.812" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.832944", + "url": "https://www.mexc.com/api/common/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8de", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=279, origin; dur=5, ak_p; desc=\"1751492198714_3563037988_596113630_28768_15784_17_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.822" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.832944", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/hidden/symbols", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8d3", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "424", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=6, ak_p; desc=\"1751492198712_3563037988_596113619_28649_23668_16_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.808" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.833943", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8dd", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=283, origin; dur=7, ak_p; desc=\"1751492198714_3563037988_596113629_29291_22598_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.819" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.833943", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8d6", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=6, ak_p; desc=\"1751492198714_3563037988_596113622_29568_20643_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.811" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.833943", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/meme/coins", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8d5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9204", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=285, origin; dur=6, ak_p; desc=\"1751492198712_3563037988_596113621_29286_22846_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.810" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.833943", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/config?action=robot.", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f908", + "cache-control": "max-age=0,must-revalidate", + "content-length": "183", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=276, origin; dur=8, ak_p; desc=\"1751492198761_3563037988_596113672_31380_24088_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.831" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.833943", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f92f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2568", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=282, origin; dur=10, ak_p; desc=\"1751492198792_3563037988_596113711_29477_23999_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.840" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.834947", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_general_float?platformType=3&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f954", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=53, origin; dur=228, ak_p; desc=\"1751492198821_3563037988_596113748_28329_27179_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.845" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.835945", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f90c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=141, origin; dur=0, ak_p; desc=\"1751492198761_3563037988_596113676_15556_22141_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.838" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.836943", + "url": "https://www.mexc.com/api/customer/community_channel", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f9e0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1309", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=281, origin; dur=6, ak_p; desc=\"1751492198932_3563037988_596113888_28754_23304_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.861" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.836943", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f9e1", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=95, origin; dur=216, ak_p; desc=\"1751492198932_3563037988_596113889_31140_23034_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.862" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:37.837944", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492199.2387fafe", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=81, origin; dur=0, ak_p; desc=\"1751492199180_3563037988_596114174_8136_26898_15_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.877" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.468609", + "url": "https://www.mexc.com/api/operation/locale_currency_config", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492199.2387fb27", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "277", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=6, ak_p; desc=\"1751492199212_3563037988_596114215_29551_28959_15_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.879" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.472609", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/timezone/list", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492199.2387fcf9", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "268", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=278, origin; dur=6, ak_p; desc=\"1751492199579_3563037988_596114681_28472_22812_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.907" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.472609", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/symbolsV2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492198.2387f8d4", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:39 GMT", + "expires": "Wed, 02 Jul 2025 21:36:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=6, ak_p; desc=\"1751492198713_3563037988_596113620_28792_21539_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.809" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.477608", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492200.2387ff7f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492200186_3563037988_596115327_2751_26914_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.952" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.477608", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492200.2387ff80", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492200160_3563037988_596115328_149_24292_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.953" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.478609", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492200.2387ffce", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492200238_3563037988_596115406_1823_26150_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.954" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.998196", + "url": "https://www.mexc.com/api/operation/placements/code/main_home_banner?category=NONE&platformType=1&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492199.2387fcf8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "964", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=883, origin; dur=8, ak_p; desc=\"1751492199579_3563037988_596114680_89145_22854_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.906" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.998196", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492200.2387ffbf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=268, origin; dur=5, ak_p; desc=\"1751492200228_3563037988_596115391_28057_24608_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.957" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.998196", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492200.2387ffbe", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82764", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=284, origin; dur=0, ak_p; desc=\"1751492200228_3563037988_596115390_29105_13685_10_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.956" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.998196", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492200.2387ffbd", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=63, origin; dur=239, ak_p; desc=\"1751492200228_3563037988_596115389_30873_15477_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.955" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.999197", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492200.2388017e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492200650_3563037988_596115838_309_28853_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.985" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:38.999197", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492200.2388017f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:40 GMT", + "expires": "Wed, 02 Jul 2025 21:36:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492200650_3563037988_596115839_328_28682_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.986" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:39.506205", + "url": "https://www.mexc.com/api/operation/popup/strategy/v2?platformType=WEB&lang=en-GB&zoneId=Europe/Kiev", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492201.23880475", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "5510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:41 GMT", + "expires": "Wed, 02 Jul 2025 21:36:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492201264_3563037988_596116597_149_23403_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.994" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:40.513130", + "url": "https://www.mexc.com/api/operation/popup/config?platformType=WEB&lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492201.238805c0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1036", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:41 GMT", + "expires": "Wed, 02 Jul 2025 21:36:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=6, ak_p; desc=\"1751492201606_3563037988_596116928_29507_24024_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.996" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:43.545141", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492205.23881344", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:45 GMT", + "expires": "Wed, 02 Jul 2025 21:36:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492205157_3563037988_596120388_1283_21253_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1008" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:43.545141", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492205.23881353", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:45 GMT", + "expires": "Wed, 02 Jul 2025 21:36:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492205180_3563037988_596120403_3567_22650_12_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.1009" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:43.545141", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492205.23881342", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:45 GMT", + "expires": "Wed, 02 Jul 2025 21:36:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=111, origin; dur=0, ak_p; desc=\"1751492205157_3563037988_596120386_13321_23157_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1005" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:44.058136", + "url": "https://www.mexc.com/api/customer/community_channel", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492205.23881343", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1309", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:45 GMT", + "expires": "Wed, 02 Jul 2025 21:36:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=6, ak_p; desc=\"1751492205157_3563037988_596120387_30382_21632_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1007" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:44.058136", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492205.23881341", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:45 GMT", + "expires": "Wed, 02 Jul 2025 21:36:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=282, origin; dur=6, ak_p; desc=\"1751492205163_3563037988_596120385_31656_25851_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1003" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:36:50.116832", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.login.EMAIL", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492211.23882a58", + "cache-control": "max-age=0, no-cache, no-store", + "content-disposition": "inline;filename=f.txt", + "content-length": "63", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:36:51 GMT", + "expires": "Wed, 02 Jul 2025 21:36:51 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=290, origin; dur=6, ak_p; desc=\"1751492211259_3563037988_596126296_29651_26839_13_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1047" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:03.207203", + "url": "https://www.mexc.com/api/common/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492224.23885c85", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:05 GMT", + "expires": "Wed, 02 Jul 2025 21:37:05 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=6, ak_p; desc=\"1751492224809_3563037988_596139141_24890_18039_19_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1079" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:10.269362", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492231.23887899", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:11 GMT", + "expires": "Wed, 02 Jul 2025 21:37:11 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=48, origin; dur=0, ak_p; desc=\"1751492231734_3563037988_596146329_5012_22724_20_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1101" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:10.269362", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492231.23887895", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:11 GMT", + "expires": "Wed, 02 Jul 2025 21:37:11 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=92, origin; dur=0, ak_p; desc=\"1751492231733_3563037988_596146325_9263_23361_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1097" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:10.269362", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492231.23887898", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:12 GMT", + "expires": "Wed, 02 Jul 2025 21:37:12 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=63, origin; dur=217, ak_p; desc=\"1751492231735_3563037988_596146328_28257_23610_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1100" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:10.269362", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492231.23887893", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:12 GMT", + "expires": "Wed, 02 Jul 2025 21:37:12 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=278, origin; dur=4, ak_p; desc=\"1751492231733_3563037988_596146323_28262_24369_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1095" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:10.269362", + "url": "https://www.mexc.com/api/customer/community_channel", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492231.23887897", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1309", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:12 GMT", + "expires": "Wed, 02 Jul 2025 21:37:12 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=275, origin; dur=7, ak_p; desc=\"1751492231734_3563037988_596146327_28327_21964_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1099" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:25.884482", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492247.2388af34", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:27 GMT", + "expires": "Wed, 02 Jul 2025 21:37:27 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=69, origin; dur=0, ak_p; desc=\"1751492247479_3563037988_596160308_7195_22177_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1149" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:25.884482", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492247.2388af2f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:27 GMT", + "expires": "Wed, 02 Jul 2025 21:37:27 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=74, origin; dur=0, ak_p; desc=\"1751492247478_3563037988_596160303_7590_30557_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1144" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:25.885484", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492247.2388aee3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:27 GMT", + "expires": "Wed, 02 Jul 2025 21:37:27 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=24, ak_p; desc=\"1751492247408_3563037988_596160227_31230_27381_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1134" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:25.885484", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492247.2388af2d", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:27 GMT", + "expires": "Wed, 02 Jul 2025 21:37:27 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=244, origin; dur=14, ak_p; desc=\"1751492247478_3563037988_596160301_25928_20093_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1142" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:25.885484", + "url": "https://www.mexc.com/api/customer/community_channel", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492247.2388af30", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1309", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:27 GMT", + "expires": "Wed, 02 Jul 2025 21:37:27 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=245, origin; dur=9, ak_p; desc=\"1751492247478_3563037988_596160304_25634_23315_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1146" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:26.395982", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_phone?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492247.2388af31", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:27 GMT", + "expires": "Wed, 02 Jul 2025 21:37:27 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=57, origin; dur=231, ak_p; desc=\"1751492247479_3563037988_596160305_29049_20132_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1147" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:27.742515", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492248.2388b397", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:29 GMT", + "expires": "Wed, 02 Jul 2025 21:37:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=53, origin; dur=229, ak_p; desc=\"1751492248693_3563037988_596161431_28367_25311_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1171" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:27.742515", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492248.2388b396", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:29 GMT", + "expires": "Wed, 02 Jul 2025 21:37:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=62, origin; dur=226, ak_p; desc=\"1751492248693_3563037988_596161430_28898_25605_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1170" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:27.742515", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492249.2388b4c1", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:29 GMT", + "expires": "Wed, 02 Jul 2025 21:37:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=6, ak_p; desc=\"1751492249024_3563037988_596161729_901_28038_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1172" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:27.743514", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492249.2388b604", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:29 GMT", + "expires": "Wed, 02 Jul 2025 21:37:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492249375_3563037988_596162052_351_22867_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1175" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:27.743514", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492249.2388b605", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:29 GMT", + "expires": "Wed, 02 Jul 2025 21:37:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492249375_3563037988_596162053_254_22838_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1176" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:28.305924", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492249.2388b734", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:29 GMT", + "expires": "Wed, 02 Jul 2025 21:37:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=40, origin; dur=0, ak_p; desc=\"1751492249723_3563037988_596162356_4083_15031_9_0_219\";dur=1", + "x-cache": "Miss from child, Hit from parent" + }, + "requestId": "205584.1398" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:28.305924", + "url": "https://futures.mexc.com/api/v1/contract/support_currencies", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492249.2388b743", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "121", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:29 GMT", + "expires": "Wed, 02 Jul 2025 21:37:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=40, origin; dur=0, ak_p; desc=\"1751492249740_3563037988_596162371_4051_16633_9_0_219\";dur=1", + "x-cache": "Miss from child, Hit from parent" + }, + "requestId": "205584.1399" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:28.305924", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492249.2388b733", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=42, origin; dur=221, ak_p; desc=\"1751492249723_3563037988_596162355_26270_17290_10_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "205584.1397" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:28.306924", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492249.2388b746", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=13, ak_p; desc=\"1751492249740_3563037988_596162374_25247_15959_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1402" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:28.306924", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492249.2388b745", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=9, ak_p; desc=\"1751492249740_3563037988_596162373_24748_26853_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1401" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:28.306924", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492249.2388b744", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=19, ak_p; desc=\"1751492249740_3563037988_596162372_25975_16349_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1400" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.112339", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b8fc", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=271, origin; dur=4, ak_p; desc=\"1751492250196_3563037988_596162812_27483_17897_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1496" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.117338", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b991", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=5, ak_p; desc=\"1751492250376_3563037988_596162961_24156_21954_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1517" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.117338", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388ba8d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492250619_3563037988_596163213_119_19889_10_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.1591" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.117338", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "854", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"success_fraction\": 0, \"failure_fraction\": 1.0 }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=13, ak_p; desc=\"1751492250366_3563037966_724069631_25273_21890_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "963bce35886cc53d" + }, + "requestId": "205584.1519" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.117338", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b98e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "319", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=47, origin; dur=218, ak_p; desc=\"1751492250376_3563037988_596162958_26566_14511_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1515" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.117338", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b990", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "130", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=46, origin; dur=219, ak_p; desc=\"1751492250376_3563037988_596162960_26535_14232_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1516" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.117338", + "url": "https://futures.mexc.com/api/v1/private/user_pref/get", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b9ae", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "236", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=7, ak_p; desc=\"1751492250404_3563037988_596162990_24277_24717_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1535" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.117338", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b9a9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "767", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=6, ak_p; desc=\"1751492250403_3563037988_596162985_24972_25050_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1530" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b97c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82848", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=58, origin; dur=231, ak_p; desc=\"1751492250357_3563037988_596162940_28949_17435_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1514" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://www.mexc.com/api/activity/contract/activity/country/amount", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388b9aa", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "59", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=245, origin; dur=9, ak_p; desc=\"1751492250403_3563037988_596162986_25492_24773_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1531" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388b992", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=10, ak_p; desc=\"1751492250380_3563037988_596162962_29540_27803_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1518" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/list?language=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b9cc", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "219", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=5, ak_p; desc=\"1751492250434_3563037988_596163020_24354_23339_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1545" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://www.mexc.com/api/common/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388b9ad", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=277, origin; dur=6, ak_p; desc=\"1751492250405_3563037988_596162989_28640_18476_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1533" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/ETH_USDT?language=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b9ce", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=245, origin; dur=6, ak_p; desc=\"1751492250434_3563037988_596163022_25144_23267_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1546" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate_save", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b9d2", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "172", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=8, ak_p; desc=\"1751492250435_3563037988_596163026_24814_25314_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1549" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://futures.mexc.com/api/v1/private/account/userBonusGuideFlag", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b9d0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=247, origin; dur=7, ak_p; desc=\"1751492250434_3563037988_596163024_25590_24336_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1547" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.118339", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751492248511", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388b9c9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=246, origin; dur=12, ak_p; desc=\"1751492250434_3563037988_596163017_25811_23581_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1544" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.119338", + "url": "https://www.mexc.com/api/activity/contract/home-menus?language=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388b9a7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "664", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=294, origin; dur=7, ak_p; desc=\"1751492250402_3563037988_596162983_30117_25814_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1528" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.120337", + "url": "https://www.mexc.com/api/activity/contract/coin/introduce/v2?language=en-GB&contractId=11", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388b9ab", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "844", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=286, origin; dur=7, ak_p; desc=\"1751492250404_3563037988_596162987_29420_24258_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1532" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.120337", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388ba10", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "864", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=242, origin; dur=4, ak_p; desc=\"1751492250494_3563037988_596163088_26314_15071_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1562" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.120337", + "url": "https://www.mexc.com/api/gateway/order/deal/feeAmount", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388b9d1", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "190", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=285, origin; dur=22, ak_p; desc=\"1751492250435_3563037988_596163025_30777_27231_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1548" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.120337", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388bb19", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82848", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492250781_3563037988_596163353_70_17133_6_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.1599" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.120337", + "url": "https://futures.mexc.com/api/v1/private/position/close_all_enable", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388ba6a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "35", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=220, origin; dur=0, ak_p; desc=\"1751492250572_3563037988_596163178_22001_16951_6_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1588" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.121338", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388bb2c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "319", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492250806_3563037988_596163372_346_17904_8_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.1600" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.121338", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388bb33", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "130", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:30 GMT", + "expires": "Wed, 02 Jul 2025 21:37:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492250811_3563037988_596163379_859_20005_8_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.1601" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.822909", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388bb34", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=5, ak_p; desc=\"1751492250812_3563037988_596163380_24938_24208_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1602" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.823909", + "url": "https://www.mexc.com/api/platform/asset/sys_balances?sys=SWAP", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388bae3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1823", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=291, origin; dur=41, ak_p; desc=\"1751492250718_3563037988_596163299_33402_29882_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1597" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.823909", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388bb5b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "864", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=5, ak_p; desc=\"1751492250843_3563037988_596163419_27934_17714_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1604" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.824908", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388bbbf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=293, origin; dur=21, ak_p; desc=\"1751492250923_3563037988_596163519_31433_26357_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1631" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.824908", + "url": "https://futures.mexc.com/copyFutures/api/v1/myRole", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388ba7d", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "52", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=646, origin; dur=10, ak_p; desc=\"1751492250592_3563037988_596163197_65788_23635_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1589" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.825907", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492250.2388bc0e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "465", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=266, origin; dur=5, ak_p; desc=\"1751492250991_3563037988_596163598_27232_20770_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1639" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.825907", + "url": "https://www.mexc.com/api/activity/contract/bonus/retention", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492250.2388bc0c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "90", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=292, origin; dur=13, ak_p; desc=\"1751492250990_3563037988_596163596_30616_30108_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1638" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.834907", + "url": "https://www.mexc.com/api/activity/contract/trade_page/visit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bc9c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "58", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=8, ak_p; desc=\"1751492251146_3563037988_596163740_29803_23665_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1658" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:29.835909", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751492249&interval=Min15&start=1750592249", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bcbc", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "33815", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=12, ak_p; desc=\"1751492251179_3563037988_596163772_25307_15524_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1659" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.466436", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bd7a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=98, origin; dur=0, ak_p; desc=\"1751492251406_3563037988_596163962_11220_26276_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (A) from parent" + }, + "requestId": "205584.1666" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.466436", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/hidden/symbols", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bd5d", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "424", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=289, origin; dur=8, ak_p; desc=\"1751492251379_3563037988_596163933_29781_23732_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1662" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.466436", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/meme/coins", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bd77", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9205", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=4, ak_p; desc=\"1751492251404_3563037988_596163959_26974_20217_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1664" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.469434", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be94", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492251701_3563037988_596164244_113_27963_12_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.1708" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.469434", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bdc7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=251, origin; dur=10, ak_p; desc=\"1751492251492_3563037988_596164039_26121_24568_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1690" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.471433", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be03", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=7, ak_p; desc=\"1751492251558_3563037988_596164099_24266_16778_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1693" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.472432", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be07", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "421", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=9, ak_p; desc=\"1751492251559_3563037988_596164103_24478_14824_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1697" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.472432", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be0b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=7, ak_p; desc=\"1751492251559_3563037988_596164107_24325_16516_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1699" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.472432", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be06", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=7, ak_p; desc=\"1751492251559_3563037988_596164102_24800_14563_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1696" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.472432", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be05", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=10, ak_p; desc=\"1751492251559_3563037988_596164101_25052_17510_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1695" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.472432", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be0a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=7, ak_p; desc=\"1751492251559_3563037988_596164106_24827_26442_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1698" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.473432", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be02", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "393", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=253, origin; dur=23, ak_p; desc=\"1751492251565_3563037988_596164098_28420_18660_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1692" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.473432", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be04", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=257, origin; dur=6, ak_p; desc=\"1751492251558_3563037988_596164100_26334_27587_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1694" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.473432", + "url": "https://www.mexc.com/api/activity/contract/trade_page/visit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388be3e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=6, ak_p; desc=\"1751492251617_3563037988_596164158_24817_22885_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1701" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.473432", + "url": "https://futures.mexc.com/api/v1/private/account/asset_book/order_deal_fee/total", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be40", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "94", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=7, ak_p; desc=\"1751492251616_3563037988_596164160_24618_23084_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1702" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.474434", + "url": "https://www.mexc.com/api/activity/contract/bonus/retention", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388be48", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "90", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:31 GMT", + "expires": "Wed, 02 Jul 2025 21:37:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=253, origin; dur=13, ak_p; desc=\"1751492251620_3563037988_596164168_27131_23017_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1705" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.476432", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388bfb9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492252000_3563037988_596164537_117_22210_8_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "205584.1737" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.477433", + "url": "https://www.mexc.com/api/operation/locale_currency_config", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bebe", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "277", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=289, origin; dur=4, ak_p; desc=\"1751492251746_3563037988_596164286_30085_21806_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1709" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.479439", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf24", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "421", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=9, ak_p; desc=\"1751492251850_3563037988_596164388_25243_17875_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1721" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.480440", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf27", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751492251848_3563037988_596164391_24295_16717_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1723" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.480440", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf0d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=272, origin; dur=9, ak_p; desc=\"1751492251823_3563037988_596164365_28091_20635_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1717" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.480440", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf28", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=259, origin; dur=7, ak_p; desc=\"1751492251848_3563037988_596164392_26823_21968_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1720" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.480440", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf48", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=6, ak_p; desc=\"1751492251876_3563037988_596164424_24328_16369_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1719" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.481439", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf67", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "393", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=9, ak_p; desc=\"1751492251909_3563037988_596164455_24428_15628_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1716" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.481439", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf68", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=7, ak_p; desc=\"1751492251909_3563037988_596164456_24633_23630_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1718" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.481439", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388bf49", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=276, origin; dur=5, ak_p; desc=\"1751492251876_3563037988_596164425_28262_25434_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1722" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.486440", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bf80", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=56, origin; dur=222, ak_p; desc=\"1751492251932_3563037988_596164480_27899_24795_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1731" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.486440", + "url": "https://www.mexc.com/api/operation/placements/footer_ad_bar?platformType=12&site=www&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bf6d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=293, origin; dur=20, ak_p; desc=\"1751492251912_3563037988_596164461_31746_24379_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1727" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.486440", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_login_ad?platformType=3&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bf7f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=63, origin; dur=235, ak_p; desc=\"1751492251932_3563037988_596164479_29805_25414_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MISS from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1730" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.487439", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492251.2388be47", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=609, origin; dur=6, ak_p; desc=\"1751492251620_3563037988_596164167_61967_22265_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1704" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.487439", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bf89", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "45", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=9, ak_p; desc=\"1751492251944_3563037988_596164489_30999_24503_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1732" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:30.487439", + "url": "https://www.mexc.com/api/platform/asset/api/common/currency/exchange/rate", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388bfba", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "396", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=4, ak_p; desc=\"1751492252000_3563037988_596164538_24541_26237_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1738" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.110612", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388bfce", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=5, ak_p; desc=\"1751492252029_3563037988_596164558_23962_18846_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1739" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.110612", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/config?action=robot.", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388bfcf", + "cache-control": "max-age=0,must-revalidate", + "content-length": "183", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=271, origin; dur=6, ak_p; desc=\"1751492252029_3563037988_596164559_27746_28533_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1740" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.111613", + "url": "https://www.mexc.com/api/operation/placements/activity_cards", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388bfb8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1652", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=44, ak_p; desc=\"1751492252000_3563037988_596164536_32458_22486_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1736" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.111613", + "url": "https://futures.mexc.com/api/v1/private/profile/kline/get", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388bfd3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "26751", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=249, origin; dur=31, ak_p; desc=\"1751492252032_3563037988_596164563_28460_26504_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1741" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.113615", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388c02c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82814", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=69, origin; dur=228, ak_p; desc=\"1751492252132_3563037988_596164652_30109_14567_6_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1747" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.114613", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388c02b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=68, origin; dur=238, ak_p; desc=\"1751492252132_3563037988_596164651_30973_14790_11_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1746" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388c0c3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=5, ak_p; desc=\"1751492252279_3563037988_596164803_23880_24438_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1748" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388c0d7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=15, ak_p; desc=\"1751492252306_3563037988_596164823_25076_21527_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1752" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://www.mexc.com/api/operation/placements/code/main_home_banner?category=NONE&platformType=1&locale=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388c0d6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "965", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=245, origin; dur=7, ak_p; desc=\"1751492252306_3563037988_596164822_25291_25087_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1751" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388c0e9", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=7, ak_p; desc=\"1751492252329_3563037988_596164841_27187_22257_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1754" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388c0ea", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=248, origin; dur=9, ak_p; desc=\"1751492252330_3563037988_596164842_28156_21987_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1755" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://www.mexc.com/api/common/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388c0f1", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=8, ak_p; desc=\"1751492252336_3563037988_596164849_28198_20548_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1756" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://www.mexc.com/api/activity/contract/bonus/user/register", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388c0f4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "45", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=6, ak_p; desc=\"1751492252336_3563037988_596164852_27664_26839_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1759" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.115613", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388c0e8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "504", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=284, origin; dur=14, ak_p; desc=\"1751492252329_3563037988_596164840_32244_22526_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1753" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.117614", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388c1c0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "10322", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=19, ak_p; desc=\"1751492252547_3563037988_596165056_25690_16031_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1768" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.117614", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/symbolsV2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492251.2388bd5f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=6, ak_p; desc=\"1751492251379_3563037988_596163935_29551_27807_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1663" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.117614", + "url": "https://futures.mexc.com/api/v1/private/account/tiered_fee_rate/v2?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492252.2388c1ed", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "280", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:32 GMT", + "expires": "Wed, 02 Jul 2025 21:37:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=11, ak_p; desc=\"1751492252593_3563037988_596165101_25162_22930_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1773" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.665265", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492252.2388c25f", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=12, ak_p; desc=\"1751492252721_3563037988_596165215_30063_22851_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1777" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:31.668267", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/list?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c3cd", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "550", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=294, origin; dur=7, ak_p; desc=\"1751492253140_3563037988_596165581_30179_27383_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1791" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.191531", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c409", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2462", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=289, origin; dur=39, ak_p; desc=\"1751492253212_3563037988_596165641_32999_23906_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1795" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.191531", + "url": "https://www.mexc.com/api/operation/popup/strategy/v2?platformType=WEB&lang=en-GB&zoneId=Europe/Kiev", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c4e1", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3498", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=36, ak_p; desc=\"1751492253438_3563037988_596165857_27628_28591_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1805" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.194036", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c64e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492253879_3563037988_596166222_183_26499_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1819" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.194036", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c64f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492253881_3563037988_596166223_351_24772_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1820" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.194036", + "url": "https://www.mexc.com/api/dex/v1/data/get_config_v3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c55d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1618", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=264, origin; dur=7, ak_p; desc=\"1751492253587_3563037988_596165981_27156_22014_14_0_219\";dur=1", + "traceparent": "00-b9c59cb013b78c79b336d829ba95cde0-aa6d3aa27b038a55-00", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1812" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.194036", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c66d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492253918_3563037988_596166253_98_25409_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1821" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.194036", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c55c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:37:33 GMT", + "expires": "Wed, 02 Jul 2025 21:37:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=311, origin; dur=7, ak_p; desc=\"1751492253610_3563037988_596165980_34237_22739_12_0_219\";dur=1", + "traceparent": "00-eec46c60972aebba9b45df46c58197cc-59e6d92b2bb1fa91-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1811" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.705952", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/profits?lang=en-GB&type=INCOME", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c640", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "695", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:34 GMT", + "expires": "Wed, 02 Jul 2025 21:37:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=244, origin; dur=7, ak_p; desc=\"1751492253852_3563037988_596166208_25111_24399_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1818" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.706950", + "url": "https://www.mexc.com/api/operation/global/search/config/default/coin", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492253.2388c55b", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "220", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:34 GMT", + "expires": "Wed, 02 Jul 2025 21:37:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=671, origin; dur=9, ak_p; desc=\"1751492253587_3563037988_596165979_68069_22421_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1810" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.706950", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat_channel?platformType=1&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492254.2388c78d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:34 GMT", + "expires": "Wed, 02 Jul 2025 21:37:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492254268_3563037988_596166541_125_24460_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1825" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.706950", + "url": "https://www.mexc.com/api/platform/site_info/placements/main_customer_chat?platformType=2&category=NONE", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492254.2388c78c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:34 GMT", + "expires": "Wed, 02 Jul 2025 21:37:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751492254268_3563037988_596166540_130_29615_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "205584.1824" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:32.706950", + "url": "https://www.mexc.com/api/operation/popup/config?platformType=WEB&lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492254.2388c716", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1035", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:34 GMT", + "expires": "Wed, 02 Jul 2025 21:37:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=288, origin; dur=5, ak_p; desc=\"1751492254135_3563037988_596166422_29441_22260_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1823" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:33.220579", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492254.2388c906", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:34 GMT", + "expires": "Wed, 02 Jul 2025 21:37:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=53, origin; dur=0, ak_p; desc=\"1751492254669_3563037988_596166918_5596_21023_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (A) from parent" + }, + "requestId": "205584.1835" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:33.220579", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492254.2388c902", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:34 GMT", + "expires": "Wed, 02 Jul 2025 21:37:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=242, origin; dur=10, ak_p; desc=\"1751492254667_3563037988_596166914_25297_22559_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1832" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:36.753972", + "url": "https://www.mexc.com/api/common/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492258.2388d4cb", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:38 GMT", + "expires": "Wed, 02 Jul 2025 21:37:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=283, origin; dur=6, ak_p; desc=\"1751492258214_3563037988_596169931_28970_19080_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1860" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.312405", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492262.2388e4b0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:42 GMT", + "expires": "Wed, 02 Jul 2025 21:37:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=6, ak_p; desc=\"1751492262689_3563037988_596174000_24024_17082_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1867" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.316405", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492263.2388e5e7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=127, origin; dur=0, ak_p; desc=\"1751492263048_3563037988_596174311_13552_22735_11_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-71.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (A) from parent" + }, + "requestId": "205584.1871" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.863771", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492263.2388e5ee", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=10, ak_p; desc=\"1751492263054_3563037988_596174318_26190_23642_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1875" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.863771", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492263.2388e5e9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=15, ak_p; desc=\"1751492263050_3563037988_596174313_26705_20840_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1872" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.863771", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492263.2388e5ea", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "505", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=252, origin; dur=19, ak_p; desc=\"1751492263051_3563037988_596174314_28304_24705_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1873" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.864767", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492263.2388e5e4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=284, origin; dur=8, ak_p; desc=\"1751492263047_3563037988_596174308_29951_23854_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1869" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.864767", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492263.2388e5eb", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=277, origin; dur=10, ak_p; desc=\"1751492263051_3563037988_596174315_29802_25161_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1874" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.864767", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492263.2388e5ef", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2461", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=257, origin; dur=35, ak_p; desc=\"1751492263055_3563037988_596174319_30755_25617_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1878" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.864767", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492263.2388e610", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=276, origin; dur=6, ak_p; desc=\"1751492263089_3563037988_596174352_33109_29300_8_0_219\";dur=1", + "traceparent": "00-2f9272cca9d4a232ca408187b78cc003-24ecc3ed40516b03-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1891" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:41.864767", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492263.2388e609", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:43 GMT", + "expires": "Wed, 02 Jul 2025 21:37:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=197, origin; dur=0, ak_p; desc=\"1751492263086_3563037988_596174345_24350_20813_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-97.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1885" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:47.959111", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492269.2388fcc1", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:49 GMT", + "expires": "Wed, 02 Jul 2025 21:37:49 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=244, origin; dur=8, ak_p; desc=\"1751492269283_3563037988_596180161_25217_7778_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1911" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:49.479028", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492270.23890233", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:51 GMT", + "expires": "Wed, 02 Jul 2025 21:37:51 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=77, origin; dur=221, ak_p; desc=\"1751492270728_3563037988_596181555_29755_18815_8_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-71.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1913" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:49.983804", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492271.238903f0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:51 GMT", + "expires": "Wed, 02 Jul 2025 21:37:51 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=9, ak_p; desc=\"1751492271197_3563037988_596182000_25069_7299_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1915" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:49.983804", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492271.238904d8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:51 GMT", + "expires": "Wed, 02 Jul 2025 21:37:51 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=14, ak_p; desc=\"1751492271452_3563037988_596182232_24811_15040_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1916" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:50.491503", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492272.23890716", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:52 GMT", + "expires": "Wed, 02 Jul 2025 21:37:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=8, ak_p; desc=\"1751492272054_3563037988_596182806_24224_14400_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1918" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:51.502519", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492272.2389090e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:52 GMT", + "expires": "Wed, 02 Jul 2025 21:37:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=8, ak_p; desc=\"1751492272638_3563037988_596183310_24431_23694_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1920" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:53.015835", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492274.23890efa", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:54 GMT", + "expires": "Wed, 02 Jul 2025 21:37:54 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751492274273_3563037988_596184826_24191_15706_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1923" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:55.045390", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492276.2389162b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:37:56 GMT", + "expires": "Wed, 02 Jul 2025 21:37:56 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=244, origin; dur=12, ak_p; desc=\"1751492276198_3563037988_596186667_25621_8745_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1928" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:37:59.587108", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492281.23892590", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:01 GMT", + "expires": "Wed, 02 Jul 2025 21:38:01 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=10, ak_p; desc=\"1751492281213_3563037988_596190608_25405_7063_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1934" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.126636", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492282.23892a12", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=81, origin; dur=0, ak_p; desc=\"1751492282498_3563037988_596191762_8574_23710_7_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-97.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1940" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892a0c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=8, ak_p; desc=\"1751492282495_3563037988_596191756_24540_25223_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1938" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492282.23892a13", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=15, ak_p; desc=\"1751492282499_3563037988_596191763_25547_19660_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1941" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892a16", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "502", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=7, ak_p; desc=\"1751492282502_3563037988_596191766_25131_20839_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1942" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892a18", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=9, ak_p; desc=\"1751492282503_3563037988_596191768_25190_23031_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1943" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892a19", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=5, ak_p; desc=\"1751492282502_3563037988_596191769_25632_24091_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1944" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892a1a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2461", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=32, ak_p; desc=\"1751492282501_3563037988_596191770_27643_20700_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1947" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.127637", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892a33", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:02 GMT", + "expires": "Wed, 02 Jul 2025 21:38:02 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=120, origin; dur=0, ak_p; desc=\"1751492282527_3563037988_596191795_15011_27857_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-71.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.1954" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.661882", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892a3c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:38:03 GMT", + "expires": "Wed, 02 Jul 2025 21:38:03 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=607, origin; dur=6, ak_p; desc=\"1751492282531_3563037988_596191804_64507_29195_7_0_219\";dur=1", + "traceparent": "00-ba21225faa1ee6aac629cee94075bad2-80836a14953d037c-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1960" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.661882", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.openlong.ETH_USDT.300X", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492282.23892be3", + "cache-control": "max-age=0, no-cache, no-store", + "content-disposition": "inline;filename=f.txt", + "content-length": "63", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:03 GMT", + "expires": "Wed, 02 Jul 2025 21:38:03 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=8, ak_p; desc=\"1751492282956_3563037988_596192227_24832_26527_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1964" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:01.661882", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492282.23892a5b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "101", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:03 GMT", + "expires": "Wed, 02 Jul 2025 21:38:03 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=617, origin; dur=74, ak_p; desc=\"1751492282565_3563037988_596191835_69335_15224_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1962" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:02.172940", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492283.23892dae", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "10293", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:03 GMT", + "expires": "Wed, 02 Jul 2025 21:38:03 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=265, origin; dur=20, ak_p; desc=\"1751492283404_3563037988_596192686_28466_18020_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1968" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:03.188172", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492284.2389324e", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:04 GMT", + "expires": "Wed, 02 Jul 2025 21:38:04 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=4, ak_p; desc=\"1751492284507_3563037988_596193870_23917_18612_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1978" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:04.199273", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492285.23893801", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:06 GMT", + "expires": "Wed, 02 Jul 2025 21:38:06 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=5, ak_p; desc=\"1751492285811_3563037988_596195329_23993_19079_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1980" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:06.226232", + "url": "https://futures.mexc.com/api/v1/private/account/tiered_fee_rate/v2?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492287.23893dd7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "280", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:07 GMT", + "expires": "Wed, 02 Jul 2025 21:38:07 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=8, ak_p; desc=\"1751492287384_3563037988_596196823_25111_21108_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1987" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:12.271717", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492293.2389560a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:13 GMT", + "expires": "Wed, 02 Jul 2025 21:38:13 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=80, origin; dur=221, ak_p; desc=\"1751492293319_3563037988_596203018_30059_17070_7_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-71.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.1991" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:12.776796", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492294.238958da", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:14 GMT", + "expires": "Wed, 02 Jul 2025 21:38:14 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=15, ak_p; desc=\"1751492294043_3563037988_596203738_24817_16038_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1992" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:13.280809", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492294.23895ac5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:14 GMT", + "expires": "Wed, 02 Jul 2025 21:38:14 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=275, origin; dur=6, ak_p; desc=\"1751492294658_3563037988_596204229_28196_16686_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1993" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:13.785879", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492295.23895d2f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:15 GMT", + "expires": "Wed, 02 Jul 2025 21:38:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=312, origin; dur=7, ak_p; desc=\"1751492295287_3563037988_596204847_32257_25377_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.1996" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:15.800611", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492297.238964b2", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "71", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:17 GMT", + "expires": "Wed, 02 Jul 2025 21:38:17 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=274, origin; dur=4, ak_p; desc=\"1751492297358_3563037988_596206770_27866_16489_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2002" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:27.410213", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492308.23899810", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:29 GMT", + "expires": "Wed, 02 Jul 2025 21:38:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=3, ak_p; desc=\"1751492308936_3563037988_596219920_23856_16853_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2032" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:31.467350", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492312.2389a66b", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:33 GMT", + "expires": "Wed, 02 Jul 2025 21:38:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=249, origin; dur=12, ak_p; desc=\"1751492312736_3563037988_596223595_26102_24271_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2044" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:32.978652", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492314.2389adae", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:34 GMT", + "expires": "Wed, 02 Jul 2025 21:38:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=248, origin; dur=6, ak_p; desc=\"1751492314505_3563037988_596225454_25442_15621_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2049" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:34.493035", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492316.2389b36a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:36 GMT", + "expires": "Wed, 02 Jul 2025 21:38:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=246, origin; dur=0, ak_p; desc=\"1751492316042_3563037988_596226922_24613_14497_6_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-97.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2052" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:35.505056", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492316.2389b5b9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:36 GMT", + "expires": "Wed, 02 Jul 2025 21:38:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=15, ak_p; desc=\"1751492316688_3563037988_596227513_25779_15467_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2053" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:36.018140", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1%2C6&page_num=1&page_size=20&states=3%2C4%2C5", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492317.2389b74e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2438", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:37 GMT", + "expires": "Wed, 02 Jul 2025 21:38:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=15, ak_p; desc=\"1751492317159_3563037988_596227918_25168_16371_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2057" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:36.019138", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492317.2389b7c3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:37 GMT", + "expires": "Wed, 02 Jul 2025 21:38:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=6, ak_p; desc=\"1751492317303_3563037988_596228035_24045_14146_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2058" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:36.523067", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492317.2389ba1e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:38 GMT", + "expires": "Wed, 02 Jul 2025 21:38:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=9, ak_p; desc=\"1751492317889_3563037988_596228638_24935_24827_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2061" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:39.061125", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492320.2389c362", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:40 GMT", + "expires": "Wed, 02 Jul 2025 21:38:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=258, origin; dur=2, ak_p; desc=\"1751492320457_3563037988_596231010_26059_17979_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2064" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:49.668038", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.closelong.ETH_USDT.300X", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492331.2389e9dc", + "cache-control": "max-age=0, no-cache, no-store", + "content-disposition": "inline;filename=f.txt", + "content-length": "63", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:51 GMT", + "expires": "Wed, 02 Jul 2025 21:38:51 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=7, ak_p; desc=\"1751492331286_3563037988_596240860_24236_25457_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2075" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:50.684672", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492332.2389ec3a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:52 GMT", + "expires": "Wed, 02 Jul 2025 21:38:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=2, ak_p; desc=\"1751492332012_3563037988_596241466_23658_14646_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2078" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:51.206023", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492330.2389e852", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "101", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:52 GMT", + "expires": "Wed, 02 Jul 2025 21:38:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=1957, origin; dur=65, ak_p; desc=\"1751492330885_3563037988_596240466_202300_12987_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2074" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:51.721337", + "url": "https://futures.mexc.com/api/v1/private/position/list/history_positions?page_num=1&page_size=20", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492333.2389ef71", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2212", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:53 GMT", + "expires": "Wed, 02 Jul 2025 21:38:53 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=12, ak_p; desc=\"1751492333008_3563037988_596242289_24914_15636_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2081" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:51.721337", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492333.2389ef8d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "10286", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:53 GMT", + "expires": "Wed, 02 Jul 2025 21:38:53 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=246, origin; dur=18, ak_p; desc=\"1751492333039_3563037988_596242317_26368_19361_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2082" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:57.253519", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492338.238a01c7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:58 GMT", + "expires": "Wed, 02 Jul 2025 21:38:58 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=83, origin; dur=220, ak_p; desc=\"1751492338562_3563037988_596246983_30314_18244_5_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-71.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2088" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:57.759638", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492339.238a0453", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:38:59 GMT", + "expires": "Wed, 02 Jul 2025 21:38:59 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=16, ak_p; desc=\"1751492339285_3563037988_596247635_25176_17084_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2089" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:58.263700", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492339.238a067c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:00 GMT", + "expires": "Wed, 02 Jul 2025 21:39:00 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751492339887_3563037988_596248188_24050_16016_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2092" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:38:59.270368", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492340.238a0888", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:00 GMT", + "expires": "Wed, 02 Jul 2025 21:39:00 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=7, ak_p; desc=\"1751492340467_3563037988_596248712_24307_27994_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2095" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:02.344049", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492343.238a1380", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:03 GMT", + "expires": "Wed, 02 Jul 2025 21:39:03 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=3, ak_p; desc=\"1751492343554_3563037988_596251520_23756_18891_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2098" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:03.365243", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492344.238a16bf", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:04 GMT", + "expires": "Wed, 02 Jul 2025 21:39:04 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=247, origin; dur=7, ak_p; desc=\"1751492344496_3563037988_596252351_25369_16096_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2100" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:13.463083", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492355.238a3951", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:15 GMT", + "expires": "Wed, 02 Jul 2025 21:39:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=4, ak_p; desc=\"1751492355108_3563037988_596261201_24264_22232_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2106" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:20.008636", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492361.238a4d01", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:21 GMT", + "expires": "Wed, 02 Jul 2025 21:39:21 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=85, origin; dur=230, ak_p; desc=\"1751492361145_3563037988_596266241_31586_17714_10_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-71.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2114" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:20.511359", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492361.238a4ffe", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:22 GMT", + "expires": "Wed, 02 Jul 2025 21:39:22 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=13, ak_p; desc=\"1751492361892_3563037988_596267006_25052_15472_20_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2115" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:21.016096", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492362.238a5232", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:22 GMT", + "expires": "Wed, 02 Jul 2025 21:39:22 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=5, ak_p; desc=\"1751492362496_3563037988_596267570_24057_17028_17_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2116" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:21.522533", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492363.238a54b0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:23 GMT", + "expires": "Wed, 02 Jul 2025 21:39:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=8, ak_p; desc=\"1751492363072_3563037988_596268208_24922_25749_16_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2119" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:25.060093", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751492366.238a61d0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:26 GMT", + "expires": "Wed, 02 Jul 2025 21:39:26 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=271, origin; dur=10, ak_p; desc=\"1751492366655_3563037988_596271568_28063_16781_16_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2123" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:32.135561", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492373.238a76fd", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:33 GMT", + "expires": "Wed, 02 Jul 2025 21:39:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=12, ak_p; desc=\"1751492373380_3563037988_596276989_25000_26913_9_7_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2136" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:33.145948", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492374.238a7a7c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:34 GMT", + "expires": "Wed, 02 Jul 2025 21:39:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751492374508_3563037988_596277884_24114_16035_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2139" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:36.690782", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492378.29d59bea", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:38 GMT", + "expires": "Wed, 02 Jul 2025 21:39:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=3, ak_p; desc=\"1751492378237_3563037983_701864938_23709_17828_5_9_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2143" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:42.272005", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492383.29d5b652", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:43 GMT", + "expires": "Wed, 02 Jul 2025 21:39:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=38, origin; dur=0, ak_p; desc=\"1751492383804_3563037983_701871698_3939_20229_5_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2149" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:42.775612", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492384.29d5b89f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:44 GMT", + "expires": "Wed, 02 Jul 2025 21:39:44 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=19, ak_p; desc=\"1751492384200_3563037983_701872287_25638_18117_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2150" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:43.280862", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492384.29d5bc4e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:45 GMT", + "expires": "Wed, 02 Jul 2025 21:39:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=286, origin; dur=6, ak_p; desc=\"1751492384817_3563037983_701873230_29322_20242_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2151" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:44.306524", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492385.29d5bff7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:45 GMT", + "expires": "Wed, 02 Jul 2025 21:39:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=9, ak_p; desc=\"1751492385463_3563037983_701874167_24506_24470_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2155" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:39:48.400629", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492389.29d5d86a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:39:50 GMT", + "expires": "Wed, 02 Jul 2025 21:39:50 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=285, origin; dur=5, ak_p; desc=\"1751492389950_3563037983_701880426_29158_20861_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2159" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:00.188822", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492401.29d61213", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:01 GMT", + "expires": "Wed, 02 Jul 2025 21:40:01 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=3, ak_p; desc=\"1751492401555_3563037983_701895187_23941_16694_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2166" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:03.286157", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492404.238ade95", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:04 GMT", + "expires": "Wed, 02 Jul 2025 21:40:04 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=5, ak_p; desc=\"1751492404578_3563037988_596303509_24024_17019_13_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2172" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:04.846775", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492406.29d6286e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131511", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:06 GMT", + "expires": "Wed, 02 Jul 2025 21:40:06 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=238, origin; dur=0, ak_p; desc=\"1751492406155_3563037983_701900910_23834_16790_12_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2174" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:05.350071", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492406.29d62b57", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:07 GMT", + "expires": "Wed, 02 Jul 2025 21:40:07 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=13, ak_p; desc=\"1751492406841_3563037983_701901655_24905_17461_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2175" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:05.869979", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492407.29d62de7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:07 GMT", + "expires": "Wed, 02 Jul 2025 21:40:07 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=7, ak_p; desc=\"1751492407457_3563037983_701902311_24070_17442_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2176" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:06.985933", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492408.29d63066", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:08 GMT", + "expires": "Wed, 02 Jul 2025 21:40:08 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=9, ak_p; desc=\"1751492408048_3563037983_701902950_24607_21155_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2179" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:11.566820", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492413.29d64414", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:13 GMT", + "expires": "Wed, 02 Jul 2025 21:40:13 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=4, ak_p; desc=\"1751492413153_3563037983_701907988_29075_20891_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2183" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:23.461830", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492424.29d673ba", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:25 GMT", + "expires": "Wed, 02 Jul 2025 21:40:25 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=6, ak_p; desc=\"1751492424807_3563037983_701920186_24393_19129_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2191" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:27.510914", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492428.29d6890f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:28 GMT", + "expires": "Wed, 02 Jul 2025 21:40:28 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=45, origin; dur=0, ak_p; desc=\"1751492428907_3563037983_701925647_4533_14812_13_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2197" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:28.044168", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492429.29d68ae3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:29 GMT", + "expires": "Wed, 02 Jul 2025 21:40:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=12, ak_p; desc=\"1751492429315_3563037983_701926115_24978_16018_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2198" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:28.551948", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492429.29d68e32", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:30 GMT", + "expires": "Wed, 02 Jul 2025 21:40:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=8, ak_p; desc=\"1751492429971_3563037983_701926962_24254_17991_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2199" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:29.057215", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492430.29d6919e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:30 GMT", + "expires": "Wed, 02 Jul 2025 21:40:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=9, ak_p; desc=\"1751492430560_3563037983_701927838_24749_22796_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2204" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:32.607197", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492433.238b4f3a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:34 GMT", + "expires": "Wed, 02 Jul 2025 21:40:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=278, origin; dur=14, ak_p; desc=\"1751492433987_3563037988_596332346_29236_24687_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2215" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:33.121277", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492434.238b5106", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:34 GMT", + "expires": "Wed, 02 Jul 2025 21:40:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=294, origin; dur=8, ak_p; desc=\"1751492434533_3563037988_596332806_30251_15883_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2216" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:35.136071", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492436.29d6b18d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:36 GMT", + "expires": "Wed, 02 Jul 2025 21:40:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=243, origin; dur=5, ak_p; desc=\"1751492436427_3563037983_701936013_24831_16895_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2221" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:46.734535", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492447.29d6f5af", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:48 GMT", + "expires": "Wed, 02 Jul 2025 21:40:48 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=7, ak_p; desc=\"1751492447978_3563037983_701953455_29381_16048_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2229" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:49.793303", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492451.29d709cd", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:51 GMT", + "expires": "Wed, 02 Jul 2025 21:40:51 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=70, origin; dur=223, ak_p; desc=\"1751492451258_3563037983_701958605_29329_18489_14_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2233" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:50.802656", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492451.29d70df2", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:52 GMT", + "expires": "Wed, 02 Jul 2025 21:40:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=13, ak_p; desc=\"1751492451996_3563037983_701959666_25285_18588_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2234" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:51.307299", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492452.29d71143", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:52 GMT", + "expires": "Wed, 02 Jul 2025 21:40:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=9, ak_p; desc=\"1751492452595_3563037983_701960515_24261_17230_16_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2236" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:51.811946", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492453.29d7145b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:53 GMT", + "expires": "Wed, 02 Jul 2025 21:40:53 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=9, ak_p; desc=\"1751492453174_3563037983_701961307_24784_22155_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2239" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:40:58.373915", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492459.29d73333", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:40:59 GMT", + "expires": "Wed, 02 Jul 2025 21:40:59 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=5, ak_p; desc=\"1751492459547_3563037983_701969203_24594_19797_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2243" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:02.965230", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492464.238bb3ca", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:04 GMT", + "expires": "Wed, 02 Jul 2025 21:41:04 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=5, ak_p; desc=\"1751492464510_3563037988_596358090_24074_16597_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2250" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:09.682226", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492471.29d76c80", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:11 GMT", + "expires": "Wed, 02 Jul 2025 21:41:11 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=283, origin; dur=3, ak_p; desc=\"1751492471117_3563037983_701983872_29021_20006_17_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2253" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:12.702778", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492473.29d77c40", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:14 GMT", + "expires": "Wed, 02 Jul 2025 21:41:14 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=62, origin; dur=227, ak_p; desc=\"1751492473917_3563037983_701987904_28931_17860_16_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2258" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:13.205999", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492474.29d78031", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:14 GMT", + "expires": "Wed, 02 Jul 2025 21:41:14 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=303, origin; dur=12, ak_p; desc=\"1751492474611_3563037983_701988913_31437_15622_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2260" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:13.711071", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492475.29d783e3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:15 GMT", + "expires": "Wed, 02 Jul 2025 21:41:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=282, origin; dur=7, ak_p; desc=\"1751492475266_3563037983_701989859_28780_18738_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2261" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:14.752664", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492475.29d78735", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:16 GMT", + "expires": "Wed, 02 Jul 2025 21:41:16 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=8, ak_p; desc=\"1751492475901_3563037983_701990709_24512_25591_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2265" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:21.309042", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492482.29d7aa9c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:23 GMT", + "expires": "Wed, 02 Jul 2025 21:41:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=3, ak_p; desc=\"1751492482741_3563037983_701999772_24286_18475_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2269" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.372953", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492483.29d7af7b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:23 GMT", + "expires": "Wed, 02 Jul 2025 21:41:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=46, origin; dur=0, ak_p; desc=\"1751492483689_3563037983_702001019_4573_21760_10_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2275" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.373953", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492483.238bf4fe", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:23 GMT", + "expires": "Wed, 02 Jul 2025 21:41:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=60, origin; dur=0, ak_p; desc=\"1751492483737_3563037988_596374782_8883_22656_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2289" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.373953", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492483.238bf4d4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:23 GMT", + "expires": "Wed, 02 Jul 2025 21:41:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=34, ak_p; desc=\"1751492483690_3563037988_596374740_26903_26190_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2273" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.373953", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492483.238bf4e0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "506", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:23 GMT", + "expires": "Wed, 02 Jul 2025 21:41:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=10, ak_p; desc=\"1751492483708_3563037988_596374752_24523_26326_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2277" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.373953", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492483.238bf4e1", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:23 GMT", + "expires": "Wed, 02 Jul 2025 21:41:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=18, ak_p; desc=\"1751492483708_3563037988_596374753_25161_25327_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2278" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.373953", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492483.238bf4e2", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:23 GMT", + "expires": "Wed, 02 Jul 2025 21:41:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=10, ak_p; desc=\"1751492483710_3563037988_596374754_24532_23605_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2279" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.374955", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492483.29d7af7d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:24 GMT", + "expires": "Wed, 02 Jul 2025 21:41:24 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=242, origin; dur=43, ak_p; desc=\"1751492483690_3563037983_702001021_28514_23698_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2276" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.374955", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492483.238bf506", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:41:24 GMT", + "expires": "Wed, 02 Jul 2025 21:41:24 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=252, origin; dur=7, ak_p; desc=\"1751492483740_3563037988_596374790_28353_21173_9_0_219\";dur=1", + "traceparent": "00-41b44c25dc0a436603c05032195f6402-b877f0c8f91475a8-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2295" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:22.374955", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492483.238bf4e3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2460", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:24 GMT", + "expires": "Wed, 02 Jul 2025 21:41:24 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=50, ak_p; desc=\"1751492483709_3563037988_596374755_28822_23966_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2282" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.063870", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492493.29d7e819", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:33 GMT", + "expires": "Wed, 02 Jul 2025 21:41:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=67, origin; dur=0, ak_p; desc=\"1751492493510_3563037983_702015513_6720_21017_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2319" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.063870", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492493.238c180e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:33 GMT", + "expires": "Wed, 02 Jul 2025 21:41:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=54, origin; dur=0, ak_p; desc=\"1751492493562_3563037988_596383758_7581_24917_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2332" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.064873", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492493.238c17e8", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:33 GMT", + "expires": "Wed, 02 Jul 2025 21:41:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=10, ak_p; desc=\"1751492493516_3563037988_596383720_24643_22310_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2323" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.064873", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492493.238c17e4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:33 GMT", + "expires": "Wed, 02 Jul 2025 21:41:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=11, ak_p; desc=\"1751492493515_3563037988_596383716_24637_22895_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2318" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.064873", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492493.29d7e835", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:33 GMT", + "expires": "Wed, 02 Jul 2025 21:41:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=13, ak_p; desc=\"1751492493534_3563037983_702015541_24907_23713_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2320" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.064873", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492493.238c17e6", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:33 GMT", + "expires": "Wed, 02 Jul 2025 21:41:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=284, origin; dur=8, ak_p; desc=\"1751492493516_3563037988_596383718_29364_25007_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2322" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.064873", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492493.238c17ea", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2460", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:33 GMT", + "expires": "Wed, 02 Jul 2025 21:41:33 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=283, origin; dur=32, ak_p; desc=\"1751492493516_3563037988_596383722_31723_21764_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2326" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.580008", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492493.29d7ea6a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:34 GMT", + "expires": "Wed, 02 Jul 2025 21:41:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=244, origin; dur=8, ak_p; desc=\"1751492493919_3563037983_702016106_25384_9541_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2340" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.581007", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492493.238c17e5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "503", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:34 GMT", + "expires": "Wed, 02 Jul 2025 21:41:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=837, origin; dur=14, ak_p; desc=\"1751492493515_3563037988_596383717_85254_22578_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2321" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:32.581007", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492493.238c1815", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:41:34 GMT", + "expires": "Wed, 02 Jul 2025 21:41:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=825, origin; dur=6, ak_p; desc=\"1751492493565_3563037988_596383765_85562_25368_6_0_219\";dur=1", + "traceparent": "00-df78a0c54d4b78f43c1c2d9f191ce302-f119adaba9adcdd9-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2338" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:33.091432", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492494.29d7ec9c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:34 GMT", + "expires": "Wed, 02 Jul 2025 21:41:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=15, ak_p; desc=\"1751492494361_3563037983_702016668_25120_15564_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2345" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:33.092436", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492494.238c1b30", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:34 GMT", + "expires": "Wed, 02 Jul 2025 21:41:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=6, ak_p; desc=\"1751492494496_3563037988_596384560_23971_17340_13_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2349" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:33.092436", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492494.238c1bd3", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:34 GMT", + "expires": "Wed, 02 Jul 2025 21:41:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=11, ak_p; desc=\"1751492494698_3563037988_596384723_24793_25096_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2350" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:35.137908", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.openlong.ETH_USDT.300X", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492496.238c2224", + "cache-control": "max-age=0, no-cache, no-store", + "content-disposition": "inline;filename=f.txt", + "content-length": "63", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:36 GMT", + "expires": "Wed, 02 Jul 2025 21:41:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=7, ak_p; desc=\"1751492496529_3563037988_596386340_24105_28002_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2360" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:35.137908", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492496.29d7f826", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:37 GMT", + "expires": "Wed, 02 Jul 2025 21:41:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=81, origin; dur=224, ak_p; desc=\"1751492496651_3563037983_702019622_30450_16421_7_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2362" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:35.657085", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492496.29d7f558", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "101", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:37 GMT", + "expires": "Wed, 02 Jul 2025 21:41:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=1008, origin; dur=72, ak_p; desc=\"1751492496126_3563037983_702018904_108272_14517_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2359" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:36.161516", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492497.29d7fbfc", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "10255", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:37 GMT", + "expires": "Wed, 02 Jul 2025 21:41:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=299, origin; dur=16, ak_p; desc=\"1751492497407_3563037983_702020604_31515_16350_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2365" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:36.161516", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492497.29d7fc9f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:37 GMT", + "expires": "Wed, 02 Jul 2025 21:41:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=299, origin; dur=13, ak_p; desc=\"1751492497535_3563037983_702020767_31221_19905_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2366" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:36.667088", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492498.29d80071", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:38 GMT", + "expires": "Wed, 02 Jul 2025 21:41:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=286, origin; dur=7, ak_p; desc=\"1751492498211_3563037983_702021745_29393_15533_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2369" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:37.703765", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492498.29d80431", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:39 GMT", + "expires": "Wed, 02 Jul 2025 21:41:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=304, origin; dur=12, ak_p; desc=\"1751492498840_3563037983_702022705_31646_23342_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2371" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:44.824239", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492505.29d82c7a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:46 GMT", + "expires": "Wed, 02 Jul 2025 21:41:46 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=3, ak_p; desc=\"1751492505955_3563037983_702033018_24421_15338_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2397" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:47.900141", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.closelong.ETH_USDT.300X", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492509.238c4c3f", + "cache-control": "max-age=0, no-cache, no-store", + "content-disposition": "inline;filename=f.txt", + "content-length": "63", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:49 GMT", + "expires": "Wed, 02 Jul 2025 21:41:49 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=291, origin; dur=8, ak_p; desc=\"1751492509021_3563037988_596397119_29918_26592_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2405" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:48.934841", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=79272b3e18dfdee6bd49c50aaeaae1ed", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492508.29d83be5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "101", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:50 GMT", + "expires": "Wed, 02 Jul 2025 21:41:50 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=1857, origin; dur=63, ak_p; desc=\"1751492508614_3563037983_702036965_192093_17170_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2404" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:49.467359", + "url": "https://futures.mexc.com/api/v1/private/position/list/history_positions?page_num=1&page_size=20", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492510.29d84849", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2196", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:50 GMT", + "expires": "Wed, 02 Jul 2025 21:41:50 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=10, ak_p; desc=\"1751492510668_3563037983_702040137_24867_16783_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2409" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:49.467359", + "url": "https://futures.mexc.com/api/v1/private/order/list/history_orders?category=1&page_num=1&page_size=100&states=3&symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492510.29d84884", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "10225", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:50 GMT", + "expires": "Wed, 02 Jul 2025 21:41:50 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=17, ak_p; desc=\"1751492510704_3563037983_702040196_25506_17146_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2410" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:49.972312", + "url": "https://www.mexc.com/api/activity/contract/stimulate_config/profits?lang=en-GB&type=INCOME", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492511.238c5368", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "688", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:51 GMT", + "expires": "Wed, 02 Jul 2025 21:41:51 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=307, origin; dur=10, ak_p; desc=\"1751492511143_3563037988_596398952_31685_24880_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2414" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:50.985997", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751492510&interval=Second1&start=1751491510", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492512.29d851f4", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "16531", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:52 GMT", + "expires": "Wed, 02 Jul 2025 21:41:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=299, origin; dur=9, ak_p; desc=\"1751492512359_3563037983_702042612_30811_17019_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2420" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:56.020850", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492517.29d86d8d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:57 GMT", + "expires": "Wed, 02 Jul 2025 21:41:57 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=4, ak_p; desc=\"1751492517556_3563037983_702049677_23713_17128_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2425" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:58.044222", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492519.29d877d3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131511", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:41:59 GMT", + "expires": "Wed, 02 Jul 2025 21:41:59 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=38, origin; dur=0, ak_p; desc=\"1751492519593_3563037983_702052307_3835_16038_6_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2429" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:58.547859", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492519.29d879a8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:00 GMT", + "expires": "Wed, 02 Jul 2025 21:42:00 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=16, ak_p; desc=\"1751492519987_3563037983_702052776_25041_18308_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2431" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:41:59.051960", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492520.29d87ce6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:00 GMT", + "expires": "Wed, 02 Jul 2025 21:42:00 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=290, origin; dur=6, ak_p; desc=\"1751492520589_3563037983_702053606_29684_16614_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2433" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:00.083357", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492521.29d88035", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:01 GMT", + "expires": "Wed, 02 Jul 2025 21:42:01 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=11, ak_p; desc=\"1751492521278_3563037983_702054453_25055_24493_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2436" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:03.121321", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492524.238c8211", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:04 GMT", + "expires": "Wed, 02 Jul 2025 21:42:04 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=5, ak_p; desc=\"1751492524506_3563037988_596410897_23969_16521_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2440" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:07.679327", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492529.29d8a7c4", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:09 GMT", + "expires": "Wed, 02 Jul 2025 21:42:09 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=285, origin; dur=5, ak_p; desc=\"1751492529143_3563037983_702064580_29077_16042_5_7_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2443" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:13.760580", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492535.29d8c63b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=44, origin; dur=0, ak_p; desc=\"1751492535334_3563037983_702072379_4469_22124_5_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2453" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:13.760580", + "url": "https://www.mexc.com/api/platform/spot/market-v2/web/tickers?openPriceMode=2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492535.238ca6e0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=60, origin; dur=0, ak_p; desc=\"1751492535391_3563037988_596420320_10252_27264_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2467" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:14.272360", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=3", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492535.238ca6bf", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=12, ak_p; desc=\"1751492535353_3563037988_596420287_25435_28640_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2451" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:14.272360", + "url": "https://www.mexc.com/api/platform/asset/api/asset/overview/convert/v2", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492535.238ca6c3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "500", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=256, origin; dur=7, ak_p; desc=\"1751492535356_3563037988_596420291_26972_30399_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2455" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:14.273361", + "url": "https://www.mexc.com/api/platform/asset/api/deposit/guide/activity?type=1", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492535.238ca6c4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=9, ak_p; desc=\"1751492535360_3563037988_596420292_25613_26451_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2456" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:14.273361", + "url": "https://www.mexc.com/api/platform/asset/api/asset/robot/convert/show", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492535.238ca6c7", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=8, ak_p; desc=\"1751492535358_3563037988_596420295_25582_27706_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2457" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:14.273361", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492535.29d8c63d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=284, origin; dur=16, ak_p; desc=\"1751492535334_3563037983_702072381_30058_21852_5_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2454" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:14.273361", + "url": "https://www.mexc.com/api/activity/contract/activities/relations", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492535.238ca6c8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2460", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=276, origin; dur=33, ak_p; desc=\"1751492535359_3563037988_596420296_31985_30919_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2460" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:14.273361", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492535.238ca6f3", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 21:42:15 GMT", + "expires": "Wed, 02 Jul 2025 21:42:15 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=283, origin; dur=5, ak_p; desc=\"1751492535400_3563037988_596420339_33229_26448_8_0_219\";dur=1", + "traceparent": "00-e4bbcdeb8d689ad52fd5d94ba85d1af1-6f0129ed4a194ec8-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2473" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:19.312405", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492540.29d8e31f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:21 GMT", + "expires": "Wed, 02 Jul 2025 21:42:21 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=4, ak_p; desc=\"1751492540799_3563037983_702079775_23767_18277_5_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2486" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:20.831733", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492541.29d8e983", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:22 GMT", + "expires": "Wed, 02 Jul 2025 21:42:22 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=73, origin; dur=229, ak_p; desc=\"1751492541964_3563037983_702081411_30237_16648_5_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2489" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:21.381465", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492542.29d8ed59", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:22 GMT", + "expires": "Wed, 02 Jul 2025 21:42:22 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=12, ak_p; desc=\"1751492542680_3563037983_702082393_25183_18837_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2491" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:21.889464", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492543.29d8f0dd", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:23 GMT", + "expires": "Wed, 02 Jul 2025 21:42:23 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=285, origin; dur=7, ak_p; desc=\"1751492543379_3563037983_702083293_29181_18112_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2494" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:22.395117", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492544.29d8f40e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:24 GMT", + "expires": "Wed, 02 Jul 2025 21:42:24 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=242, origin; dur=7, ak_p; desc=\"1751492544003_3563037983_702084110_24952_29710_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2497" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:30.976345", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492552.29d91e60", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:32 GMT", + "expires": "Wed, 02 Jul 2025 21:42:32 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=282, origin; dur=4, ak_p; desc=\"1751492552349_3563037983_702094944_28710_17363_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2504" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:33.021266", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492554.238ce997", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:34 GMT", + "expires": "Wed, 02 Jul 2025 21:42:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=4, ak_p; desc=\"1751492554500_3563037988_596437399_24346_17595_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2513" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:34.036796", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492555.238cec7d", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:35 GMT", + "expires": "Wed, 02 Jul 2025 21:42:35 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=283, origin; dur=11, ak_p; desc=\"1751492555315_3563037988_596438141_29457_26715_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2516" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:42.630557", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492563.29d957b0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:44 GMT", + "expires": "Wed, 02 Jul 2025 21:42:44 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=3, ak_p; desc=\"1751492563991_3563037983_702109616_23762_17670_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2520" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:43.135936", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492564.29d95b71", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131511", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:44 GMT", + "expires": "Wed, 02 Jul 2025 21:42:44 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=43, origin; dur=0, ak_p; desc=\"1751492564690_3563037983_702110577_4350_15655_10_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2523" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:43.641164", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492565.29d95d5b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:45 GMT", + "expires": "Wed, 02 Jul 2025 21:42:45 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=305, origin; dur=12, ak_p; desc=\"1751492565088_3563037983_702111067_31708_15551_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2524" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:44.146309", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492565.29d960ba", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:46 GMT", + "expires": "Wed, 02 Jul 2025 21:42:46 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751492565751_3563037983_702111930_24167_17898_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2527" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:45.226347", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492566.29d963a6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:46 GMT", + "expires": "Wed, 02 Jul 2025 21:42:46 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=306, origin; dur=10, ak_p; desc=\"1751492566336_3563037983_702112678_31543_24200_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2530" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:42:54.361970", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492575.29d98e17", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:42:55 GMT", + "expires": "Wed, 02 Jul 2025 21:42:55 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=3, ak_p; desc=\"1751492575541_3563037983_702123543_23825_19327_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2535" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:03.061662", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492584.238d51e9", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:04 GMT", + "expires": "Wed, 02 Jul 2025 21:43:04 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=281, origin; dur=8, ak_p; desc=\"1751492584503_3563037988_596464105_28948_16735_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2545" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:05.586769", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492587.29d9c84c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:07 GMT", + "expires": "Wed, 02 Jul 2025 21:43:07 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=68, origin; dur=227, ak_p; desc=\"1751492587089_3563037983_702138444_29541_19230_15_0_219\";dur=1", + "x-cache": "Miss from child, TCP_REFRESH_MISS from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (S) from parent" + }, + "requestId": "205584.2548" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:05.586769", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492587.29d9c899", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:07 GMT", + "expires": "Wed, 02 Jul 2025 21:43:07 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=303, origin; dur=4, ak_p; desc=\"1751492587135_3563037983_702138521_30742_19767_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2549" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:06.596436", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492587.29d9cc8b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15113", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:08 GMT", + "expires": "Wed, 02 Jul 2025 21:43:08 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=308, origin; dur=16, ak_p; desc=\"1751492587796_3563037983_702139531_32313_19652_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2550" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:07.098773", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492588.29d9d02b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:08 GMT", + "expires": "Wed, 02 Jul 2025 21:43:08 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=292, origin; dur=6, ak_p; desc=\"1751492588460_3563037983_702140459_29791_20924_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2553" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:07.604079", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492589.29d9d34c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:09 GMT", + "expires": "Wed, 02 Jul 2025 21:43:09 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=240, origin; dur=8, ak_p; desc=\"1751492589096_3563037983_702141260_24663_27916_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2556" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:17.196207", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492598.29d9fb73", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:19 GMT", + "expires": "Wed, 02 Jul 2025 21:43:19 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=4, ak_p; desc=\"1751492598761_3563037983_702151539_23829_18208_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2562" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:28.288843", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492609.29da309c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131620", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:29 GMT", + "expires": "Wed, 02 Jul 2025 21:43:29 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=41, origin; dur=0, ak_p; desc=\"1751492609832_3563037983_702165148_4679_16667_16_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-84.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "205584.2569" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:28.795102", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492610.29da3241", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:30 GMT", + "expires": "Wed, 02 Jul 2025 21:43:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=247, origin; dur=16, ak_p; desc=\"1751492610234_3563037983_702165569_26261_16248_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2570" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:28.795102", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492610.29da32ad", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:30 GMT", + "expires": "Wed, 02 Jul 2025 21:43:30 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=4, ak_p; desc=\"1751492610341_3563037983_702165677_23820_16677_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2571" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:29.300187", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492610.29da3479", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:31 GMT", + "expires": "Wed, 02 Jul 2025 21:43:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=8, ak_p; desc=\"1751492610867_3563037983_702166137_24611_16194_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2574" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:30.323006", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492611.29da36b5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13147", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:31 GMT", + "expires": "Wed, 02 Jul 2025 21:43:31 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=9, ak_p; desc=\"1751492611456_3563037983_702166709_24647_25810_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2578" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:33.410131", + "url": "https://www.mexc.com/api/customer/monitor/device_info/job?memberId=21a8728990b84f4fa3ae64c8004b4aaa&endpoint=WEB", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492614.238daff7", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:34 GMT", + "expires": "Wed, 02 Jul 2025 21:43:34 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=289, origin; dur=5, ak_p; desc=\"1751492614500_3563037988_596488183_29447_16525_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2586" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:34.420110", + "url": "https://www.mexc.com/api/operation/trend/contract/symbols/contract_favorite/trigger_thresholds", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751492615.238db415", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:36 GMT", + "expires": "Wed, 02 Jul 2025 21:43:36 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=263, origin; dur=11, ak_p; desc=\"1751492615970_3563037988_596489237_27478_25486_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2591" + }, + { + "type": "response", + "timestamp": "2025-07-03T00:43:40.513532", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, x-csdesk-tenant-id", + "access-control-allow-methods": "POST, DELETE, PUT, GET, OPTIONS", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.1fa55fd4.1751492622.29da63de", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 21:43:42 GMT", + "expires": "Wed, 02 Jul 2025 21:43:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=4, ak_p; desc=\"1751492622025_3563037983_702178270_23790_15423_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "205584.2595" + } + ], + "summary": { + "total_requests": 396, + "total_responses": 396, + "capture_session": "20250703_003625" + } +} \ No newline at end of file diff --git a/tests/test_mexc_account_private.py b/tests/test_mexc_account_private.py new file mode 100644 index 0000000..34ddff9 --- /dev/null +++ b/tests/test_mexc_account_private.py @@ -0,0 +1,64 @@ +import os +import logging +import sys + +# Configure logging +logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') +logger = logging.getLogger(__name__) + +# Add project root to path +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) + +from NN.exchanges.mexc_interface import MEXCInterface +from core.config import get_config + +def test_mexc_private_api(): + """Test MEXC private API endpoints""" + # Load configuration + config = get_config('config.yaml') + mexc_config = config.get('mexc_trading', {}) + + # Get API credentials + api_key = os.getenv('MEXC_API_KEY', mexc_config.get('api_key', '')) + api_secret = os.getenv('MEXC_SECRET_KEY', mexc_config.get('api_secret', '')) + + if not api_key or not api_secret: + logger.error("API key or secret not found. Please set MEXC_API_KEY and MEXC_SECRET_KEY environment variables.") + return + + # Initialize MEXC interface in test mode + mexc = MEXCInterface(api_key=api_key, api_secret=api_secret, test_mode=True, trading_mode='simulation') + + # Test connection + if not mexc.connect(): + logger.error("Failed to connect to MEXC API") + return + + # Test getting account information + logger.info("Testing account information retrieval...") + account_info = mexc.get_account_info() + if account_info: + logger.info(f"Account info retrieved: {account_info}") + else: + logger.error("Failed to retrieve account info") + + # Test getting balance for a specific asset + asset = "USDT" + logger.info(f"Testing balance retrieval for {asset}...") + balance = mexc.get_balance(asset) + logger.info(f"Balance for {asset}: {balance}") + + # Test placing a simulated order (in test mode) + symbol = "ETH/USDT" + side = "buy" + order_type = "market" + quantity = 0.01 # Small quantity for testing + logger.info(f"Testing order placement for {symbol} ({side}, {order_type}, qty: {quantity})...") + order_result = mexc.place_order(symbol=symbol, side=side, order_type=order_type, quantity=quantity) + if order_result: + logger.info(f"Order placed successfully: {order_result}") + else: + logger.error("Failed to place order") + +if __name__ == "__main__": + test_mexc_private_api() \ No newline at end of file diff --git a/tests/test_mexc_account_privte.py b/tests/test_mexc_account_privte.py index 35f9e1c..c796297 100644 --- a/tests/test_mexc_account_privte.py +++ b/tests/test_mexc_account_privte.py @@ -1,13 +1,31 @@ -from NN.exchanges.mexc_interface import MEXCInterface import logging +import os +from NN.exchanges.mexc_interface import MEXCInterface # Set up logging to see debug info logging.basicConfig(level=logging.INFO) +# Load API credentials from environment variables or a configuration file +# For testing, prioritize environment variables for CI/CD or sensitive data +# Fallback to a placeholder or configuration reading if env vars are not set +api_key = os.getenv('MEXC_API_KEY', '') +api_secret = os.getenv('MEXC_SECRET_KEY', '') + +# If using a config file, you might do something like: +# from core.config import get_config +# config = get_config('config.yaml') +# mexc_config = config.get('mexc_trading', {}) +# api_key = mexc_config.get('api_key', api_key) +# api_secret = mexc_config.get('api_secret', api_secret) + +if not api_key or not api_secret: + logging.error("API keys are not set. Please set MEXC_API_KEY and MEXC_SECRET_KEY environment variables or configure config.yaml") + exit(1) + # Create interface with API credentials mexc = MEXCInterface( - api_key='mx0aBYs33eIilxBWC5', - api_secret='45d0b3c26f2644f19bfb98b07741b2f5', + api_key=api_key, + api_secret=api_secret, trading_mode='simulation' )