diff --git a/core/mexc_webclient/auto_browser.py b/core/mexc_webclient/auto_browser.py index f56347c..1e08cd5 100644 --- a/core/mexc_webclient/auto_browser.py +++ b/core/mexc_webclient/auto_browser.py @@ -66,86 +66,74 @@ class MEXCRequestInterceptor: self.requests_file = f"mexc_requests_{self.timestamp}.json" self.cookies_file = f"mexc_cookies_{self.timestamp}.json" - def setup_chrome_with_logging(self) -> webdriver.Chrome: - """Setup Brave browser with performance logging enabled""" - logger.info("Setting up ChromeDriver with request interception for Brave browser...") - - # Chrome options (used for Brave as it's Chromium-based) - chrome_options = Options() - - # Set up Chrome options with a user data directory to persist session - user_data_dir = os.path.join(os.getcwd(), 'chrome_user_data') - os.makedirs(user_data_dir, exist_ok=True) - chrome_options.add_argument(f'--user-data-dir={user_data_dir}') - chrome_options.add_argument('--disable-extensions') - chrome_options.add_argument('--disable-gpu') - chrome_options.add_argument('--window-size=1920,1080') + def setup_browser(self): + """Setup Chrome browser with necessary options""" + chrome_options = webdriver.ChromeOptions() + # Enable headless mode if needed if self.headless: chrome_options.add_argument('--headless') - chrome_options.add_argument('--no-sandbox') + chrome_options.add_argument('--disable-gpu') + chrome_options.add_argument('--window-size=1920,1080') + chrome_options.add_argument('--disable-extensions') - # 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}") + # Set up Chrome options with a user data directory to persist session + user_data_base_dir = os.path.join(os.getcwd(), 'chrome_user_data') + os.makedirs(user_data_base_dir, exist_ok=True) - # Essential options for automation - chrome_options.add_argument("--no-sandbox") - chrome_options.add_argument("--disable-dev-shm-usage") - chrome_options.add_argument("--disable-blink-features=AutomationControlled") - chrome_options.add_argument("--disable-web-security") - chrome_options.add_argument("--allow-running-insecure-content") - chrome_options.add_argument("--disable-features=VizDisplayCompositor") + # Check for existing session directories + session_dirs = [d for d in os.listdir(user_data_base_dir) if d.startswith('session_')] + session_dirs.sort(reverse=True) # Sort descending to get the most recent first - # User agent to avoid detection - user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" - chrome_options.add_argument(f"--user-agent={user_agent}") + user_data_dir = None + if session_dirs: + use_existing = input(f"Found {len(session_dirs)} existing sessions. Use an existing session? (y/n): ").lower().strip() == 'y' + if use_existing: + print("Available sessions:") + for i, session in enumerate(session_dirs[:5], 1): # Show up to 5 most recent + print(f"{i}. {session}") + choice = input("Enter session number (default 1) or any other key for most recent: ") + if choice.isdigit() and 1 <= int(choice) <= len(session_dirs): + selected_session = session_dirs[int(choice) - 1] + else: + selected_session = session_dirs[0] + user_data_dir = os.path.join(user_data_base_dir, selected_session) + print(f"Using session: {selected_session}") - # Disable automation flags - chrome_options.add_experimental_option("excludeSwitches", ["enable-automation"]) - chrome_options.add_experimental_option('useAutomationExtension', False) + if user_data_dir is None: + user_data_dir = os.path.join(user_data_base_dir, f'session_{self.timestamp}') + os.makedirs(user_data_dir, exist_ok=True) + print(f"Creating new session: session_{self.timestamp}") - # Enable performance logging for network requests - chrome_options.add_argument("--enable-logging") - chrome_options.add_argument("--log-level=0") - chrome_options.add_argument("--v=1") + chrome_options.add_argument(f'--user-data-dir={user_data_dir}') - # Set logging preferences for performance data + # Enable logging to capture JS console output and network activity chrome_options.set_capability('goog:loggingPrefs', { - 'performance': 'ALL', - 'browser': 'ALL' + 'browser': 'ALL', + 'performance': 'ALL' }) - # # Add profile directory argument as provided by the user - # chrome_options.add_argument("--profile-directory=Profile 3") - try: - # Automatically download and install ChromeDriver - logger.info("Downloading/updating ChromeDriver...") - service = Service(ChromeDriverManager().install()) - - # Create driver - driver = webdriver.Chrome( - service=service, - options=chrome_options - ) - - # Hide automation indicators - driver.execute_script("Object.defineProperty(navigator, 'webdriver', {get: () => undefined})") - driver.execute_cdp_cmd('Network.setUserAgentOverride', { - "userAgent": user_agent - }) - - # Enable network domain for CDP - driver.execute_cdp_cmd('Network.enable', {}) - driver.execute_cdp_cmd('Runtime.enable', {}) - - logger.info("ChromeDriver setup complete!") - return driver - + self.driver = webdriver.Chrome(options=chrome_options) except Exception as e: - logger.error(f"Failed to setup ChromeDriver: {e}") - raise + print(f"Failed to start browser with session: {e}") + print("Falling back to a new session...") + user_data_dir = os.path.join(user_data_base_dir, f'session_{self.timestamp}_fallback') + os.makedirs(user_data_dir, exist_ok=True) + print(f"Creating fallback session: session_{self.timestamp}_fallback") + chrome_options = webdriver.ChromeOptions() + if self.headless: + chrome_options.add_argument('--headless') + chrome_options.add_argument('--disable-gpu') + chrome_options.add_argument('--window-size=1920,1080') + chrome_options.add_argument('--disable-extensions') + chrome_options.add_argument(f'--user-data-dir={user_data_dir}') + chrome_options.set_capability('goog:loggingPrefs', { + 'browser': 'ALL', + 'performance': 'ALL' + }) + self.driver = webdriver.Chrome(options=chrome_options) + + return self.driver def start_monitoring(self): """Start the browser and begin monitoring""" @@ -153,7 +141,7 @@ class MEXCRequestInterceptor: try: # Setup ChromeDriver - self.driver = self.setup_chrome_with_logging() + self.driver = self.setup_browser() # Navigate to MEXC futures mexc_url = "https://www.mexc.com/en-GB/futures/ETH_USDT?type=linear_swap" diff --git a/core/mexc_webclient/mexc_futures_client.py b/core/mexc_webclient/mexc_futures_client.py index d8bb819..a1a6ae8 100644 --- a/core/mexc_webclient/mexc_futures_client.py +++ b/core/mexc_webclient/mexc_futures_client.py @@ -22,6 +22,17 @@ from urllib.parse import urlencode logger = logging.getLogger(__name__) +class MEXCSessionManager: + def __init__(self): + self.captcha_token = None + + def get_captcha_token(self) -> str: + return self.captcha_token if self.captcha_token else "" + + def save_captcha_token(self, token: str): + self.captcha_token = token + logger.info("MEXC: Captcha token saved in session manager") + class MEXCFuturesWebClient: """ MEXC Futures Web Client that mimics browser behavior for futures trading. @@ -30,30 +41,27 @@ class MEXCFuturesWebClient: the exact HTTP requests made by their web interface. """ - def __init__(self, session_cookies: Dict[str, str] = None): + def __init__(self, api_key: str, api_secret: str, user_id: str, base_url: str = 'https://www.mexc.com', headless: bool = True): """ Initialize the MEXC Futures Web Client Args: - session_cookies: Dictionary of cookies from an authenticated browser session + api_key: API key for authentication + api_secret: API secret for authentication + user_id: User ID for authentication + base_url: Base URL for the MEXC website + headless: Whether to run the browser in headless mode """ - self.session = requests.Session() - - # Base URLs for different endpoints - self.base_url = "https://www.mexc.com" - self.futures_api_url = "https://futures.mexc.com/api/v1" - self.captcha_url = f"{self.base_url}/ucgateway/captcha_api/captcha/robot" - - # Session state + self.api_key = api_key + self.api_secret = api_secret + self.user_id = user_id + self.base_url = base_url self.is_authenticated = False - self.user_id = None - self.auth_token = None - self.fingerprint = None - self.visitor_id = None - - # Load session cookies if provided - if session_cookies: - self.load_session_cookies(session_cookies) + self.headless = headless + self.session = requests.Session() + self.session_manager = MEXCSessionManager() # Adding session_manager attribute + self.captcha_url = f'{base_url}/ucgateway/captcha_api' + self.futures_api_url = "https://futures.mexc.com/api/v1" # Setup default headers that mimic a real browser self.setup_browser_headers() @@ -142,37 +150,59 @@ class MEXCFuturesWebClient: endpoint = f"robot.future.{side}.{symbol}.{leverage}" url = f"{self.captcha_url}/{endpoint}" - # Setup headers for captcha request + # Attempt to get captcha token from session manager + captcha_token = self.session_manager.get_captcha_token() + if not captcha_token: + logger.warning("MEXC: No captcha token available, attempting to fetch from browser") + captcha_token = self._extract_captcha_token_from_browser() + if captcha_token: + self.session_manager.save_captcha_token(captcha_token) + else: + logger.error("MEXC: Failed to extract captcha token from browser") + return False + headers = { 'Content-Type': 'application/json', 'Language': 'en-GB', 'Referer': f'{self.base_url}/en-GB/futures/{symbol}?type=linear_swap', 'trochilus-uid': self.user_id if self.user_id else '', - 'trochilus-trace-id': f"{uuid.uuid4()}-{int(time.time() * 1000) % 10000:04d}" + 'trochilus-trace-id': f"{uuid.uuid4()}-{int(time.time() * 1000) % 10000:04d}", + 'captcha-token': captcha_token } - # Add captcha token if available (this would need to be extracted from browser) - # For now, we'll make the request without it and see what happens - + logger.info(f"MEXC: Verifying captcha for {endpoint}") try: response = self.session.get(url, headers=headers, timeout=10) - if response.status_code == 200: data = response.json() - if data.get('success') and data.get('code') == 0: - logger.info(f"MEXC: Captcha verification successful for {side} {symbol}") + if data.get('success'): + logger.info(f"MEXC: Captcha verified successfully for {endpoint}") return True else: - logger.warning(f"MEXC: Captcha verification failed: {data}") + logger.error(f"MEXC: Captcha verification failed for {endpoint}: {data}") return False else: - logger.error(f"MEXC: Captcha request failed with status {response.status_code}") + logger.error(f"MEXC: Captcha verification request failed with status {response.status_code}: {response.text}") return False - except Exception as e: - logger.error(f"MEXC: Captcha verification error: {e}") + logger.error(f"MEXC: Captcha verification error for {endpoint}: {str(e)}") return False + def _extract_captcha_token_from_browser(self) -> str: + """ + Extract captcha token from browser session using stored cookies or requests. + This is a placeholder for actual implementation which would interact with browser data. + """ + try: + # Placeholder for extracting token from browser session or stored data + # In a real scenario, this would parse the mexc_requests JSON file or interact with Selenium + logger.info("MEXC: Attempting to extract captcha token from browser data") + # For now, return empty string as placeholder + return "" + except Exception as e: + logger.error(f"MEXC: Error extracting captcha token from browser: {str(e)}") + return "" + def generate_signature(self, method: str, path: str, params: Dict[str, Any], timestamp: int, nonce: int) -> str: """ diff --git a/mexc_requests_20250703_021049.json b/mexc_requests_20250703_021049.json new file mode 100644 index 0000000..dc8cc92 --- /dev/null +++ b/mexc_requests_20250703_021049.json @@ -0,0 +1,15618 @@ +{ + "requests": [ + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.263418", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.219" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.264418", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.220" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.264418", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.221" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.992315", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f90b48c7-d1eb-449b-86e9-c321d444c972-0002", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.316" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.992315", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "17439985460067999046F95C765EEA24" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.994315", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "742BD60FC50D7BE5638D877E675FC637" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.994315", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "C9E3E2524E2A707F35C5800B65911254" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.994315", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "5CA8BD16EB127ED2B46AD0EEAB6D1B58" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.994315", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,platform,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "AB8EA76600F8D1E1F55ABAC70276A3CB" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.995319", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "8D2E806C91045F2351313443D5AD5D30" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.996315", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "0d8e641f-aa0e-4b76-8226-accf358344ac-0004", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.335" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.997314", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "83205030-a7c2-41fb-8f1c-1413fb97effd-0005", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.336" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.997314", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "416aebe3-fb1e-4e34-82e1-702c97d058b6-0006", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.337" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.998315", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "943d10c2-b8c4-42f8-8c12-6869a64b4e74-0007", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.338" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.998315", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "platform": "web", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "606e10de-9494-43a6-b20d-2971ed9dd1ac-0008", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.339" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.998315", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "bae4691c-b9e7-4e09-aa86-2f97b9617fac-0012", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.348" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:58.999313", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a9c8f964-0881-4ee6-8a2a-c2b582aec7bd-0014", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.350" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.000316", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "2b870fa8-650f-450d-ac9f-9c031535d052-0015", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.351" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.000316", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6681ce6f-3351-4a70-b061-4f242075b15c-0016", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.352" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.000316", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "af2d1832-63f8-40ff-b3b6-6e3683bec743-0017", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.353" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.002445", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "3201EF7795C7DF89A637AED7E272E9DC" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.002445", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "F8656A01DBF9CF701DF5AA2B7486F984" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.003442", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "3a2c8e6b-f4ad-405a-9b7a-5044be768974-0026", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.393" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.003442", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "d009727d-0491-43ad-8808-fe0625fcc534-0027", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.396" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.623209", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "633f72b5-1c0c-4933-aab3-b6d5038d2d2c-0029", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.404" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.623209", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "2f51f9fb-df11-4f19-b803-c68c58192ef2-0030", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.405" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.624208", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "1df1dc97-f2f2-448a-b2e9-52e0593fcb69-0031", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.406" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.624208", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "518D3C3467E1F809A065DB644A466228" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.624208", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b0abb1f8-801c-49e9-a640-e86583e216a3-0032", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.407" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.626210", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "4ad997ff-72c1-4165-8bce-aa40e4be9132-0034", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.433" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.626210", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "67B07E2DF9A63C6270617D62C1DA19AD" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.628209", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "649267ff-b781-40fe-ae3e-54502af90337-0036", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.435" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.630210", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "e2ba58ed-061a-46c2-965b-3a189c70fa8c-0039", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.455" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.630210", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "895b37c8-bb71-4a4f-8e30-af90b6623aa9-0040", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.456" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.631211", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "aab851d6-58b9-4fb2-8219-6c8b745def70-0041", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.457" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.632211", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "7f3be901-cf60-4289-9cfb-3ac80a667424-0043", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.460" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.633208", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497859&interval=Min15&start=1750597859", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "B2285B62ACD07F1A35B25A2BBACF6979" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:10:59.633208", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497859&interval=Min15&start=1750597859", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "aa0a9806-386b-4687-8aa3-a6e05a83a1f9-0044", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.461" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.241485", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "7F6E9953F8C8AAFF0FE2E9827FC8A040" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.241485", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "9cf8844e-c623-43d7-a36f-ff003dac0d39-0051", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.491" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.241485", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8718d30c-d833-481f-b820-7126aa841ca7-0052", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.492" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.241485", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f94e2b39-3462-4054-b7ec-cc039790e444-0053", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.493" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.242484", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a42a3f12-b037-4437-9469-0c32b1c67d73-0054", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.494" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.774367", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "50eba2ea-0de1-44ba-b1ed-b7368572ef4a-0056", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.498" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.775366", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "02cb4a51-9349-400a-983e-d14846baede0-0057", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.499" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.775366", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "cb8fa8f0-e7e2-4975-892b-172d37b42574-0058", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.500" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.775366", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "D8362F69CDE8F85664EAB2DF7980C314" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.775366", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "19451b10-469c-478b-ae9a-94d6a066fab6-0060", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.503" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.775366", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b68520d2-251b-437d-8cfd-43f879899ca4-0061", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.504" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.778366", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "F95D95D80D63318EA04676C753675A52" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.779366", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f8b29ce3-5967-436b-bab6-07c1698bbf98-0066", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.513" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:00.779366", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "acca7bc6-9e33-47b6-b9fe-5d0e2a3b0b0e-0067", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.514" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.393003", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "2D211F63FA078DA4C090079B0186E38B" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.393003", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b1cbdbcb-a3d2-48d3-95f3-2ec85ec22b5e-0073", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.524" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.394004", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b6768e92-11c4-4716-880a-0428bb95fc06-0074", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.525" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.394004", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "3d3c5fe6-7124-4672-a213-36e3c2c4c462-0077", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.528" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.426528", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "58522a20-5fb1-4afb-94b7-15b6a6a83f56-0081", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.542" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.426528", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "31d92b41-ce3f-4c7b-b1e1-7f9997bc1662-0082", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.544" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.495531", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "1189c4d9-44c9-4e0c-86bd-a1cb8bf5c2e3-0083", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.548" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.495531", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7f830147-9b8c-43a7-8189-0476a262b373-0084", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.549" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.495531", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a8a2e7ec-2edf-4626-b73f-5f0ebb868fd7-0085", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.550" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.495531", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "e126fba9-b99d-4bdb-8888-39c3929d9824-0086", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.551" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.495531", + "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": "1751497861", + "N-Uuid": "28659b3f-e25f-4e2f-b834-a4242dd1d0d9", + "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/138.0.0.0 Safari/537.36", + "X-Signature": "6c83c6f6bd7245d30ed8c06d7e9a41a2", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "17dc381d-261c-4759-a22f-f04dcae369ff-0087", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.552" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.496532", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "B2D3AAF2474DDF7221F80726D818484D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.496532", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "6B8DD626250D2996B533A49B876672A4" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.496532", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "2e7e2411-ec2b-4ea9-868d-49e26e1dcc41-0088", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.553" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.497530", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "11030446-2bb2-4053-83a8-42f4f8f200ee-0089", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.554" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.497530", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "96d1e8f3-b82c-4541-97a8-e89d7d9f63dd-0090", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.555" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:01.498532", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f264b90d-edb5-4192-9960-3ecb3371bc0c-0091", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.558" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:02.012127", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6fb7336d-8bcb-49ff-b104-bc5e6f87ba56-0093", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.560" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:02.013160", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7096dae0-02d2-4efa-85ef-407d84534663-0094", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.561" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:02.013160", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "3a257558-d949-42cd-aeff-d490f533b520-0095", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.562" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:02.014127", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "3dea7711-3158-414f-bdc9-72532d0e2bc5-0097", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.564" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:06.092804", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b781bf09-28f1-4270-a617-d485ea61b7e1-0104", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.579" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:06.092804", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "29E918129740E6370B65E02954B190CF" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:06.092804", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "EA5653EB3B4CD4190D9348D20F7C5022" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:06.092804", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ac02d7c2-583b-4ea7-bbe0-551081086170-0106", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.581" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:06.092804", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "aab7dd57-983c-4682-9b44-c75dee91dafa-0107", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.582" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:06.093804", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "36afff0c-33f3-4665-a8c6-120c6f2bcf50-0111", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.586" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.525106", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,platform,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "7F11315F687B9890D310069ED0F555A1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.526096", + "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/138.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=a87ebbc3450241b0aad2bec25513101d,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-9b9b7671ea1da58c-0", + "trochilus-trace-id": "d7337674-e94d-4d64-bd0e-c6174b18d622-0013", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.825" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.526096", + "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/138.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=a87ebbc3450241b0aad2bec25513101d,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-9020225ab7f5d8b9-0", + "trochilus-trace-id": "04396001-7fb1-4893-9e14-d8717cd7d487-0014", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.826" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.526096", + "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/138.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=a87ebbc3450241b0aad2bec25513101d,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-994be0e264730faa-0", + "trochilus-trace-id": "1a615d55-7595-46f8-b1fc-c38a43a3145f-0015", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.827" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.526096", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "1e6b817f-c416-4efa-8f13-1e5a581b4c28-0016", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.828" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.526096", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "platform": "web", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "72be7033-1f84-4736-9354-790bbb16265d-0017", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.829" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.527095", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "134a819d-d1bd-4e6b-b4dc-f174bcdf6617-0019", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.834" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.527095", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "362b3c70-aed5-4067-ad51-257d853c5911-0020", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.835" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.527095", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "bc6e3943-32a1-46f4-a351-435b315c5264-0021", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.836" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:12.528096", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "602a1627-f3df-4cff-bae5-91e894f5ce29-0022", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.839" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.227783", + "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/138.0.0.0 Safari/537.36", + "device-id": "CCz21cTV430SBW3sxd28", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone-login": "UTC+03:00", + "trochilus-trace-id": "3e615a81-ade1-4976-9d37-ebc730bbac45-0029", + "trochilus-uid": "", + "ucenter-token": "" + }, + "postData": "", + "requestId": "236252.848" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.256783", + "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/138.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=a87ebbc3450241b0aad2bec25513101d,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-b4354b86ca81c44d-0", + "timezone": "UTC+8", + "trochilus-trace-id": "949b32a7-a565-4fe3-b1b1-739481d9c6e1-0032", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.854" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.257782", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "37a57439-4e93-4a0b-88c6-2e5d785800e9-0035", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.856" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.257782", + "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/138.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=a87ebbc3450241b0aad2bec25513101d,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-b4386c9068f9f630-0", + "trochilus-trace-id": "f2991b50-d149-483c-9ff1-471ecf8e434c-0038", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.861" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.259784", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "025c4f29-2788-41b1-bfd4-81660985220e-0039", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.876" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.259784", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "917b9201-a6bc-4fa8-86ca-536b0a880def-0040", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.877" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.264781", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "C412E29948AA332CD5B032262E24FC6C" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.265783", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "5385ec47-2ff1-4e39-acb2-52e42d6a4fa7-0045", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.892" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.265783", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ddf501b3-15dd-4d60-96f4-46f0e97869e4-0046", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.893" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.879643", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f9814c16-18d6-4130-8011-7ae180e9f14e-0059", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.909" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.879643", + "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/138.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=a87ebbc3450241b0aad2bec25513101d,sentry-sample_rate=0.1,sentry-transaction=%2Flogin,sentry-sampled=false", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-a3986a53cd0ff490-0", + "trochilus-trace-id": "cd3459ff-6f73-4740-a9f9-f90ff95d1fcf-0060", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.911" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.948846", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6927de36-226e-4792-b3ea-f19e5d1ed919-0067", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.935" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.948846", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b0ae51bb-fbaa-4a1d-8447-22cd32a4e215-0068", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.936" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.948846", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "660bb812-26f6-4600-9c3c-95f8ba102ded-0069", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.937" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.948846", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "D00CC8EF2015ED4FAF4609BE75936F5D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.949844", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "7F64EE227D04E54754403990F0A03BC0" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.949844", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "AECF6FD03EFDD95CCC3EA7E307A6B638" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.949844", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "1836d9ab-d39d-400c-89f8-239087fb1dc1-0070", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.938" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.950843", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "e0d10fab-b33c-4dc0-9a43-b927991f6f04-0071", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.939" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.950843", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "bb05336b-d96f-46f9-a726-462218a86c0c-0072", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.940" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.954842", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "1111ae5e-8928-4bd2-9553-f7ca32b2c07b-0076", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.957" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.954842", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f60ddd23-c5bc-4cbf-8246-6ef1f908ec36-0077", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.958" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.955844", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "e02a7c77-7827-454b-867f-f1fbc217703a-0078", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.959" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.956845", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ae704570-257e-44c9-8bad-0c28f3a64b77-0080", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.961" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.975843", + "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/138.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=a87ebbc3450241b0aad2bec25513101d", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-8777b840c64548e2-0", + "timezone": "UTC+8", + "trochilus-trace-id": "09376aaa-aa94-4ca6-941a-13c9ab3f0893-0089", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.986" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.975843", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "1d2477cc-efc8-41f4-a7d3-510032f55f80-0091", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.988" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:16.975843", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "643de432-9e71-42f1-b919-6f068bc875cf-0092", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.989" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:20.120376", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "5b70ad7c-7766-40e0-a0c6-b92fcfc60393-0110", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1018" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:20.121383", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "0FA3B8785118E3C78962D16C690CA6E9" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:23.705373", + "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/138.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiJlOTAxOWY1MDU1Yzc0MjQ5YTQyNDRjYTZkY2MxMzA2ZSIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHRVAtaTNTM3Y3cmhzZF9VczlQdlJ3eGxjOEJrNmt1VE9xSE5qXzBXUmswRS14Q2NBdTNSTDc5N1FVcnRsa29zWVd1Y3VjQmpFaGFYRVdmUGFqenN0Wm0zbDJldlk4Vkx2TXo3TmNxb1NpaXVTTV9Vc1M4SUNua0hnTXA4eWdXSXVkcnpQMGVxMW9OaEhDVUh1MnM4TVYtbnA3WlZWdFVrLUU5Y2prTmxQN01lbk1xYnlkOFVFVmptZ0VOazFpZUpnZnMtcjFPWWF6OHlZWWVmN2NVMkFWWDJ1aGRxSlpIUHJfRWl1VmJSTlExbnA4MlUtenRqbEVVSjQ5MTE3SUF1QU1kVlZ0anl3Q25aV0tSLWFnRWh0QjVkYUFpTmptSnJ6dGlRdlBzSHdSM21MVnl3NWgyRE90bGdHek9XRGx0VjRzX0xNcnZ1TjhXRy1jM2lwb0pfNEdjVXhQZ3I5NV9JNEtRTElPVjZucmhlUE1UbkFRMWFtTzFPOG9hNXdFWkN3NEdpOUtBWVZCV2txbmU5d2hJckxEVGJDelZXTTBtemwzU3A1QkVWRm5iTWhHQVZ5ZkJHNVU5YkdNRmJicGxYNyIsInBhc3NUb2tlbiI6IjFkY2YyMjQyMjA2MTNkMDY3ODZlMGQ0Y2FlMzMzZjBmYjI1YTAxMTlmNjNlODFhN2FjOWEyZjhmN2VhYzFmM2UiLCJnZW5UaW1lIjoiMTc1MTQ5Nzg3NCJ9", + "content-type": "application/json", + "device-id": "CCz21cTV430SBW3sxd28", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone-login": "UTC+03:00", + "trochilus-trace-id": "537082d0-077c-4141-bd3a-b4b7212f8aa1-0128", + "trochilus-uid": "", + "ucenter-token": "" + }, + "postData": "", + "requestId": "236252.1048" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:25.299587", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8c7520f4-2512-4f94-bbf2-3e5a97aa874b-0135", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1055" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:25.299587", + "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/138.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=a87ebbc3450241b0aad2bec25513101d", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-93054aa2ecc12403-0", + "timezone": "UTC+8", + "trochilus-trace-id": "0aac072a-a1d8-4222-baec-06c1763fbeff-0137", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1057" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:25.299587", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a38e5844-f796-4a66-bbcf-518be1688ac0-0139", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1059" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:25.299587", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "bba291b5-f989-4546-a358-9bad2f94d73e-0140", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1060" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:25.299587", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "250af70c-4a7a-4298-b413-6cbbd82fe83f-0141", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1061" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:36.936112", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7c7f3b56-8503-424d-bebd-b2c4953dee34-0151", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1077" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:36.945114", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "2e4485a9-01d1-477a-9012-d8b41a0b52ad-0155", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1081" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:36.946112", + "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/138.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=a87ebbc3450241b0aad2bec25513101d", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sentry-trace": "a87ebbc3450241b0aad2bec25513101d-8dc31fe9c36bb1a9-0", + "timezone": "UTC+8", + "trochilus-trace-id": "341d0b02-76d9-4edc-a25c-fe15f9df5efa-0157", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1083" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:36.946112", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "c7cbd249-b4a9-4f04-9321-6bf980b02f3c-0159", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1085" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:36.946112", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "92f14311-2657-43fb-b5f6-07f4df57ec8f-0160", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1086" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:36.946112", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "3D7AA51F7B43E54CA560349598532A8D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:11:36.946112", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "80ed5753-8c89-4f1e-be89-cea3d62cceb2-0161", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "236252.1087" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.985118", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "4E85BF35EB682AC327D40909C46B4E17" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.985118", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "D7691B7CE7D63D7648D002AD64FBBBB4" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.986125", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "0A99F960E3986B16859832BB7CE68A9F" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.986125", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.1359" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.986125", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.1360" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.987119", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.1361" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.987119", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.1362" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.987119", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.1363" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:03.987119", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "Referer": "https://www.mexc.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + }, + "postData": "", + "requestId": "236252.1364" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.132314", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f2bc536b-942f-49f5-8526-a360af90b9a7-0002", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1458" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.132314", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "EEE37D3EB150DD0833231B56BE5BFD98" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.135315", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "B3AE02FD7DBDD9838D0E1D594C5381BD" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.135315", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "4ADE768508B670D0D78B0372F111D072" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.136315", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "353B20D8BBA22B098949FE7D04F60C89" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.136315", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "486A1EA90CFE2DDC77834AF0520B392E" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.137323", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,platform,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "440D986CCDE66DD1E03A9762456B87E7" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.137323", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "BD2C4F22CB30C39063B9BC2CF2C7BD1F" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.139322", + "url": "https://futures.mexc.com/api/v1/private/user_pref/get", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "E7DB48EA614FBA7E20A10682D0CA0C74" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.139322", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "0E50936C46DCA0DA3B408C5669DC460E" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.139322", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "CABFA4E014E4B87523C3916F86D204A1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.140323", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "4693D3C52E5FA33AF4A914CADE39159A" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.140323", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "78895FDF7AF5C0C7597AD4C6C76245D1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.141323", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751497924299", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "93C3ACCE2D63428AF11DFB462616095C" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.141323", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/list?language=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "D9673C86B70DEB7E5CE8365535B581D4" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.141323", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/ETH_USDT?language=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "B09C50CC9E54BDF6BEDAA81B8C2A2450" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.142324", + "url": "https://futures.mexc.com/api/v1/private/account/userBonusGuideFlag", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "23D5553382C9F612017488FF9E691260" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.142324", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate_save", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "0A66C832FB029F54199379378B1ABDD2" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.144322", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "BBFC7A6133C43CD366375B3487EFF980" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.145325", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "BC68A6D63291F799A92BD8332AFA45C0" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.146323", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "81c4f9ea-b7db-42ee-9a2c-bb18310e7f31-0004", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1475" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.147321", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "847ff9a6-8daa-46e3-9ace-fad99d6c186a-0005", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1476" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.148322", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8ada356f-02b8-4eec-aed7-a66540f2734c-0006", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1477" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.148322", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "c8112ad6-0c29-4c8b-a2a4-51c9034e1987-0007", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1478" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.149321", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6e3803ae-cff6-409f-acf2-0fca0f447539-0008", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1479" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.149321", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "platform": "web", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7218b9fa-c75d-404f-a759-1aaf306760a5-0009", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1480" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.150322", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "de7728ce-5c38-4951-ba56-e8c1cae43561-0013", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1489" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.151830", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "23a48eb8-07bb-431c-83b9-6cf0f023035f-0015", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1491" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.151830", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7e20f817-ba0a-46b9-91d7-b27dd98ec467-0016", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1492" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.152840", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "708a96c5-929d-42ba-97af-8ffff39c9327-0017", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1493" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.152840", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f52d5293-916d-4bd2-9d5e-bd89d20db494-0018", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1494" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.153838", + "url": "https://futures.mexc.com/api/v1/private/user_pref/get", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "100779b4-4bab-48ea-b6a7-1b01ab286008-0020", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1496" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.155839", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "561634a6-c0e0-46a3-b9b5-4d03dc1e91ae-0022", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1505" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.156837", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "00b42c46-6b78-41d9-bcb7-36069cf9996f-0023", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1506" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.157838", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "d2e6639d-575b-4e27-8efc-2a76f5a38739-0024", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1507" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.158841", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "37c9df4e-67a1-492d-9f33-72aa170a7b02-0025", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1508" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.159842", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751497924299", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "68c948dc-ce43-4269-8b1c-6672732024ae-0026", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1509" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.160840", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/list?language=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6fa2fc49-11a1-48bc-80ef-e336914d67cf-0027", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1510" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.161839", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/ETH_USDT?language=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "04db930e-e612-4170-be7d-726781406ab5-0028", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1511" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.161839", + "url": "https://futures.mexc.com/api/v1/private/account/userBonusGuideFlag", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6fa9ad27-3a5c-403f-8af1-a68962f6e235-0029", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1512" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.162839", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6fb34d1a-7fe0-4f7f-a751-40f8e6b6c5cc-0030", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1513" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.163837", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate_save", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8b91d484-d9e1-4ef8-8593-df3f0f02afcb-0031", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1514" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.164842", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b2d9b4d9-a651-4d46-9f79-5e5d2ee6de41-0040", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1528" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.164842", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "256a717c-7903-4535-892e-c69d74e3d0ec-0041", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1529" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.166843", + "url": "https://futures.mexc.com/api/v1/private/position/close_all_enable", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "0B95D157DB05AC557D1D685029E14A83" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.166843", + "url": "https://futures.mexc.com/copyFutures/api/v1/myRole", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "90AD32BD1CFACD34642D803F0AD55A95" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.167840", + "url": "https://futures.mexc.com/api/v1/private/position/close_all_enable", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a1f4dffa-e410-4800-a3a0-624e5d0fe35a-0044", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1555" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.168840", + "url": "https://futures.mexc.com/copyFutures/api/v1/myRole", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "9d9631d0-b572-4f4f-a92e-6b249d7f5160-0045", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1556" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.169839", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "EE281617A7E9C36CE53113F00A4081D7" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.170838", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b08a90a3-b102-49e2-b9ae-493c291f97ee-0046", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1558" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.178839", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "c9a9a906-ab4e-4d97-a8b5-e34a678b64fd-0047", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1566" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:05.180840", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "627875c0-451d-4771-8989-f4ddbb5871ef-0051", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1572" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.143309", + "url": "https://www.mexc.com/api/activity/contract/bonus/retention", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f2e79a38-2ec1-4499-af86-27e449e4645d-0053", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1599" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.143309", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "94d4ee25-0b1a-497a-9ff6-cd90a14ec873-0054", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1600" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.143309", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "8B823F5117F0DE90C6AC563BE4F9FED3" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.151305", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497925&interval=Min15&start=1750597925", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "041B254A946763AF757D64AB8B22B366" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.152306", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f47491d9-16f1-4505-ba9d-a87d11af7259-0056", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1602" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.153482", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497925&interval=Min15&start=1750597925", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ce3aeaf6-64d5-4f3e-ae44-3de2f936a1c9-0057", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1603" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.157486", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "df7cc7d5-8b5d-4cba-b635-951e12de74ac-0060", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1624" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.157486", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "1be708ac-f03a-44a7-8813-0466e7ca0353-0061", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1625" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.157486", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "abbd5cbb-d640-4b44-87ba-e9de7337c7ae-0062", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1626" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.160484", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "20b1ffd0-878b-4b2b-8623-c9db347f0091-0065", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1630" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.164484", + "url": "https://futures.mexc.com/api/v1/private/account/asset_book/order_deal_fee/total", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "5A02E3298F618A6DFAE48F3856B58CBB" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.164484", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "A2B6E13A8F17019C949CE44ED31331E2" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.165486", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "4fdea26a-9b66-4755-8615-96306849b973-0068", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1657" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.165486", + "url": "https://futures.mexc.com/api/v1/private/account/asset_book/order_deal_fee/total", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8072b618-e568-462e-812d-efd99aa96db3-0069", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1658" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.166485", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "297ea42c-135f-4603-af86-35b921f44ad0-0070", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1660" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.166485", + "url": "https://www.mexc.com/api/activity/contract/bonus/retention", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a06ef12b-436f-430c-84dd-62770b3f01e7-0071", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1661" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.166485", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "e03efa20-15f2-4af5-b29c-72548b8ddf26-0072", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1662" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.166485", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "E73E7ABBD0A51FF89F5D553EB9670760" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.167482", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "3D13E552A86C685121699646A708AB66" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.167482", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "DBB2067BAF95F6C6FA039267861F8888" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.167482", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "5F68C0EB32DA1E3DE0DBC7354AB5B8DB" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.167482", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "c5e2efbd-afec-4802-8351-5e5564db8fcd-0073", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1663" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.167482", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "af1abd8c-8f4a-4449-8237-7f1981baefda-0074", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1664" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.168484", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a04cbf72-b96c-4fe5-a9e6-9d97951a61ee-0075", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1665" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.168484", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a05930fc-4835-4fe8-87af-82382e475795-0076", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1666" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.168484", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "45FE3FF9FDC2050DF5D40BEC165AF876" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.169483", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "38376d0e-3cc1-4aaa-b595-5b45ca1b88e0-0077", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1667" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.169483", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ee038edf-1b5e-4ee7-93c1-b6d3de426d91-0078", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1668" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.169483", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "0ce23e47-5324-4889-8e46-f0116c2cfefb-0079", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1669" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.169483", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "eced15f5-368d-4a05-a5b4-0dfb92c73deb-0080", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1670" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.170484", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "01B731CDE7A794F8350051366FC3D12C" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.170484", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "B426959CE8A05C24B55D93994B449F12" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.170484", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "E600BA2814A637AB17C6A6C8F9B6A1CB" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.171485", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "402613096A9CE31B2E2D7C7F2E4C6D1C" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.171485", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "eec81275-a587-4a00-927b-55202f8bd0c1-0081", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1671" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.172484", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "de9ea0ac-215a-47b1-897c-127e6d29ce46-0082", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1672" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.172484", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8c4e0565-c77c-48cb-a6b3-fa92cea56de5-0083", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1673" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:06.172484", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "10f443ba-528b-41bd-a713-da10daf429ee-0084", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1674" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:07.034337", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "8394AEB0780FE89931F795290E142529" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:07.035337", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f33f8969-2691-4ef2-9f5c-61e8245ea317-0085", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1675" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:07.036337", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "e4e627fb-2b99-4a89-99bf-a8af60970c00-0086", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1676" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.070609", + "url": "https://futures.mexc.com/api/v1/private/profile/kline/get", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ce7472ec-b6a7-4372-80d8-9ab4b78ba1c1-0091", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1680" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.070609", + "url": "https://futures.mexc.com/api/v1/private/profile/kline/get", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "CD500E44093EF1C3C738D3498DF0164E" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.072612", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "de7dac3e-1bce-4f96-a686-05fc8f1d7700-0092", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1682" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.072612", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "461f1667-3ee6-4bdd-8149-d60d83ce4814-0093", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1683" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.072612", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "35efa53f-b7b2-4d83-966c-68a83e9e7e0a-0094", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1684" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.073609", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "D23C784632AC40524325F0F3041BD7E3" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.073609", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "190fd8a6-2cb9-421d-ae5f-a565729ac793-0096", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1687" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.074610", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7bcc88e0-54c0-4916-a4a0-89d7f6d59c59-0097", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1688" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.074610", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f64464ba-4307-4e6c-a57a-71171fbe8d33-0098", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1689" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.074610", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "9867af45-bf5a-438b-8b82-fe5a275c0c10-0099", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1690" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.075610", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "0b54fc03-9981-4a60-b2f0-8ae113a663cb-0100", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1691" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.075610", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "2e0104b2-d41d-4244-a098-c67b7aaff853-0101", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1692" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.076610", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "26ce05a5-abe0-40e2-896c-77bfdf8e2314-0102", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1693" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.076610", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "994df17f-99bf-4204-a974-4011d8dc44d8-0103", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1694" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.076610", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "7D4B98D73FA45EF58FE3F0DF9036CE68" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.076610", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "51841D94B537BA3F083BBB37F5DBE3EE" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.077610", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "6D2A32048C91F38B6B3C638E104534E9" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.077610", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "53A6353812F5AC78680459DD3AA90E45" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.077610", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "0F983BC0AE08C38179782C95E92030BD" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.077610", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "395D9D9B9F028CF69CC68264E9539CF1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.077610", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "C3A49207515AC052A14A7A17189024DF" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.082608", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7d84bc84-f643-45b4-aacc-1ac785673e9c-0104", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1695" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.082608", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "94B7A69D17A421BEA3EB3802433E29F3" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:08.084609", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "fd21e144-4420-4122-9677-bf7b67ae7115-0107", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1701" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.789527", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "BA4C2C336A43CDB20847FB6A73445630" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.789527", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,timezone,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "6C1B8255CB2FDD0DC5216E5831A8A501" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.790527", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "67f01a7a-281a-42bb-bf68-a35f665908b6-0114", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1708" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.791528", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "94a922bf-fa59-49b3-8d21-01f4868c7df9-0115", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1709" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.792527", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "0a5d35c4-c679-4159-90d8-e061fea13037-0116", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1710" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.793528", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "49C2960C7F77D479551F8C845325DB4F" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.796532", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a8b1f6ae-0aa6-433c-a636-7173b1f188ba-0119", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1714" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.796532", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "234eea8f-05c7-4e0f-9226-5b22762dcfe9-0120", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1715" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.798527", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "734198c7-acfe-46ca-b557-3c3a6c3d8664-0121", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1716" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.798527", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "75cd8805-f9f0-4310-88f7-dbf4d9e0d64e-0122", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1717" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:10.799528", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ac62c084-94e8-42cd-955f-22f4c4e4a8a7-0123", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1718" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:11.289965", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "97335c31-c9e6-478f-9185-782b89900f9c-0124", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1719" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:11.290966", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "4a3a1ebf-8029-4dad-982c-feacc4bd1bae-0127", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1722" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.006018", + "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": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "D7573955363921E4E04E2DAFEADD4927" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.006018", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f397622e-341e-45a8-ac36-15ea3218f5dc-0133", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1740" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.007019", + "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": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "2078f779-386c-4893-95de-8e643671e757-0134", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1741" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.008019", + "url": "https://futures.mexc.com/api/v1/private/account/tiered_fee_rate/v2?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8f23ce9b-3317-4b84-8872-0a61395d1203-0135", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1745" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.008019", + "url": "https://futures.mexc.com/api/v1/private/account/tiered_fee_rate/v2?symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "20C9EDD6E3FB19C9359B06FC7B9B9896" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.694711", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "641200d0-09d7-45ab-839d-2b9eed3ae15b-0136", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1749" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.694711", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "3fbea5a9-f096-48ca-8c86-e99f6f50d3e3-0138", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1751" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.716713", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7211afe8-01bc-4d53-b1e3-00890ebea80b-0140", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1761" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.716713", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "platform": "web", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "35389812-c1fe-45e1-99fb-00c119691bb5-0142", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1763" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.795236", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b682d272-aae7-47bd-b3bc-905bdfe17698-0144", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1768" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.850245", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "09755293-8902-459e-b19b-a122ac73edab-0146", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1771" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.850245", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ca271a53-b4d1-4b03-bfa6-97141bd7940b-0147", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1772" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.850245", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "29208bdd-b9d9-474b-8091-53a168863f5b-0148", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1773" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.851245", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "9b8f0cc1-d99e-4768-8610-eb77fcfa7455-0150", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1775" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.851245", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751497930", + "N-Uuid": "e7467a9c-5a08-469c-a31e-e5c8ff17c21a", + "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/138.0.0.0 Safari/537.36", + "X-Signature": "d01a94ddf5d89873c4def422252899d9", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ee9b0720-bbf7-40cb-a367-78b7d3c34146-0151", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1776" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.851245", + "url": "https://www.mexc.com/api/dex/v1/data/get_config_v3", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751497930", + "N-Uuid": "1f5eac3a-c514-47a8-8e0f-8541973cf7ed", + "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/138.0.0.0 Safari/537.36", + "X-Signature": "e7cddc4819a61e0c4ce39841642e71cd", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6e3815e9-4d31-4070-927f-cc5af602ec4e-0152", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1777" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.871759", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "e8a9a634-f87e-4396-a0a2-b06ff7ace087-0157", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1784" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.872759", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "cd8c790e-efc9-414b-81de-58f5891557be-0158", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1785" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.872759", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "a90fd42c-fec4-4ca8-9408-062a2bab6454-0159", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1786" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:12.874759", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "d9ca4a05-674a-49c5-a3f5-0627bd1a4a65-0162", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1789" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:13.420091", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "dfe521fd-ba11-49dc-94c2-913c37ed507e-0164", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1796" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.120221", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "db511640-930b-4d30-a1a1-ac92bbbdb436-0169", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1806" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.121223", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "AA9B9ACD5136CE3FC7A8D177E06BE6ED" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.122223", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "C3E14BF71BD4F6425BD799AC2F4C4AC5" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.123223", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b880e3b0-9f10-4265-9c6b-9ec0782ccbda-0171", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1808" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.123223", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "25615b3c-8834-4779-9f79-78aa3cc6df8f-0172", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1809" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.124222", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "715e2c65-038c-49db-b54a-0c0f0402e0b1-0173", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1810" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.124222", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "f08837fd-cd5d-448c-b51e-ac835310b223-0174", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1811" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.124222", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "5ec09e54-92f0-477f-855e-f528ab139381-0175", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1812" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.157227", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "dee49105-e748-4b42-8d8c-1a5b6e8cb5bf-0178", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1815" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.159227", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "aa9eba04-3cd8-4876-9d6b-ea9c3627f902-0185", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1824" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.189257", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751497936", + "N-Uuid": "8414ca49-fd2b-4373-aab8-22c963b7efb4", + "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/138.0.0.0 Safari/537.36", + "X-Signature": "ddb6ce00248ae253a9db77ee1af6c8a4", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "4395033d-ef07-4282-9326-af2d51a14dfd-0191", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1830" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:17.190259", + "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/138.0.0.0 Safari/537.36", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "db74e08b-a3bc-40ad-ac9f-f75934ae0d43-0192", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1832" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:21.842084", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b5e9d0ac-c5f8-4f0e-96f6-b548e7cb7d0d-0199", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1844" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:21.843084", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "8C3E19BED37771ABAE061897A1D5B06D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:24.960619", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "33d4fd4f-d081-4893-9a87-24078331fc34-0205", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1851" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:24.960619", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "806B8E37ED4C303C90CD6A33E724C269" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:25.980148", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "88ba7943-d252-4972-9d30-3a50cc97c225-0207", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1853" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:25.981149", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "70AA47812F43FA341656F40A3FF3C1B2" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:26.999715", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "cc1bc8e9-61c7-4d72-aafa-fbccfb4f010a-0208", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1854" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:26.999715", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "8E72D6087E9DEDB7766F0334539B8615" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:27.525857", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "POST", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "4eacf845-91c0-471a-9acd-fea2ee01613f-0211", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751497948533", + "x-mxc-sign": "8980d8e5ff4980c90dc83a649bbd683d" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":87,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":87,\"leverage\":300,\"openType\":2}}", + "requestId": "236252.1858" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:27.525857", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,content-type,language,pragma,trochilus-trace-id,trochilus-uid,x-language,x-mxc-nonce,x-mxc-sign", + "Access-Control-Request-Method": "POST", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "B3447102B3209BD30CFF4E80D247328B" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:27.526853", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "340903a2-e781-42cd-b1b9-a33dec58f87d-0212", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1860" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:27.526853", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "C3B29F3062320E02B925984ACCAE7A58" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:33.641363", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "POST", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "ce45163e-161e-4008-9eda-389177e20e56-0218", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751497954544", + "x-mxc-sign": "b68e2c558977f4b9bd3a9b6f7fc5584c" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":1,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":1,\"leverage\":300,\"openType\":2}}", + "requestId": "236252.1869" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:33.641977", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,content-type,language,pragma,trochilus-trace-id,trochilus-uid,x-language,x-mxc-nonce,x-mxc-sign", + "Access-Control-Request-Method": "POST", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "63428C0B8A664D2216221FBAB2816683" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:34.147084", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "4a489e78-1122-4ed3-bcb3-6d64bf00c297-0219", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1870" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:34.147084", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "A1A7309131B46F5A912C7A0BE2A8A5CE" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:34.662115", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,content-type,language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language,x-mxc-nonce,x-mxc-sign", + "Access-Control-Request-Method": "POST", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "274A59D727AEFAC6C80209FE151E32A4" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:34.662719", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "method": "POST", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "3ce3ca06-7df3-4257-8b3c-c5edbcb75dc6-0222", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751497955713", + "x-mxc-sign": "fb12a91c03cc2248673c50d9f18a2692" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":1,\"openType\":2,\"type\":\"5\",\"vol\":1,\"leverage\":300,\"marketCeiling\":false,\"priceProtect\":\"0\",\"p0\":\"p8bdWg4U8Y5xBxUMcPCOT7X48BNsVuxdYzFAV+Ft3YG/8GY3N6V6gyG1M2/uhcpn0DZ+Ix9ndNDd+9kTHrLck430bP3EcVUg/0yYRlCKACa81yZ2o52gLBrvIrFQ8nYJxv/lvKYcnsWcFK5f+eQFUzH23uU74i3UshW/u3QaWF4tzjmAiOYo1TIVs8qyWQBOJtMYTAWztgq1Ikd1MZNBhPlP/YwL8/gvXSSXgBsMyKU4yz3Q1ce3Evg/Z6zvaGrcjvy8649KL9y/DcwvWhHPRg1fr57NRlLUZK+Nw92EZQOL+yzaLkDRuM4703FPc6uhE4YxFbAXiTo=\",\"k0\":\"OeUQTyMmgZsalmrWrq7nr9PzgcqFOnG0SEfFNoYDCNiHE2EjRde7q3mtFFRAEuxPgEeVxLFOPY04zmfau5J83hlYkaWJ3g6MUJZ43ixY4jzOQ0sTUNm8s8hwvwnyUtk1m9GLstaIBNum8P84I+eJD3C0BkUgxQKARYQqjDTizRpl3g5MXk5uK4hcEjrg6gvIhVP2VFIy99zJhDXipdadVLVeD09GQeUEbTQqC20F9o98PCLvUZvWBQxJLv+U0PAKMORX27QDGOvjPjlvHIeFoSz1p+IbyVJiqwocaoyT40HK6o8iSYRiVTqb1LKjPyX1tdxAOmhxYuAa/msJMlsGxQ==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"CCz21cTV430SBW3sxd28\",\"ts\":1751497954304,\"mhash\":\"c25cd71a3e959f32985f27ac29c5484e\"}", + "requestId": "236252.1875" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:35.181507", + "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/138.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiI0N2EzZDAwNjUxNzI0Y2ZjODcwZTk1YTFjNjU2OGZmZSIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHdXRyNmVmUHgwa0dYdGtqY2E4aUxZanVLcXcwSnBxY3Rwam1QR3VtU3hHYkhjY002S2Y2RVlIVHVhU0VtT2xsQTU3ekZhNUp3OVlRcDR0V2tuN3VZNjBUWVRvYTNyQXgySTREeXVFTUlyZ21IXzE3aDI5bmozNkxLcTRweF91Q0dsZ21WblZ0cVRLS2pad2FGa1o4M3I2Y0N0blFPZVF2ckt0VDV2aXpyRWFFN21MdHlCQkROeHk0eTVYNFhwYjVIdjgyQzI0SDB1SXNFdWNuWi1CZS1oLUtwVEJjMmRGYWxHVUk3LUJDVXNkcDc0aTBjU2JlVEZBY0FUZ3JTbFN4VWFmVG90dExiVVV3MzlXYnBKN05JLWZ3LWFDcGE2bm54eU0zQkNjZ3BQUzdJWVhPQXE4azRTWGpJUDFldG5zMTdEMW1OQWFqc05xN01ZV0xsd1QzbzdwMU1fMEw1UlZKRmVLdUN5aUk2cVUxdy1pX29EVDEwakx4VWlqWDdNc3JNdWFLQ254RWpLT0xfUkw5ZkJESUg5SUdXaFZ4QmlxWFhFWnRHSGxXTVlrczhIQndENjZtMDhIbjhfQUJhbUhmLSIsInBhc3NUb2tlbiI6IjAzYWMxZGIxNjc4ZTRlOTQ1OGM0NmM5NDljZmIyMmYyZGNmZTRmMDZiYjkyM2FkMmFiODQ0NDUwNjM0ZTQ1OWQiLCJnZW5UaW1lIjoiMTc1MTQ5NzkyOCJ9", + "content-type": "application/json", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "d44fd169-3589-4dea-810c-7a1c410a822c-0224", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1877" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:35.794418", + "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": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "5E4BE16B85045768AAD312C00190EE74" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:35.795419", + "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": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b3ab0c27-f7c2-40e3-9406-358361478f85-0228", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1882" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:41.379633", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b11edfa5-3b4f-4741-9d19-3b1e6bbf061a-0236", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1893" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:43.480253", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,content-type,language,mtoken,pragma,trochilus-trace-id,trochilus-uid,x-language,x-mxc-nonce,x-mxc-sign", + "Access-Control-Request-Method": "POST", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "533E7F47B45BD8912797694BC01DB5C1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:43.480861", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "method": "POST", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "mtoken": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "5f99aea9-500b-4394-b1f3-87dac658e76f-0239", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751497964813", + "x-mxc-sign": "aef98a183105aec7101e258f2db87a23" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":4,\"openType\":2,\"leverage\":300,\"type\":5,\"vol\":1,\"priceProtect\":\"0\",\"p0\":\"1rU6TL+y7pgatzLEdcg8WQcVzj0X7DCCjbZ6rkZudhLRGvlGRIwR+BT5v5ULqfQ2wDrweNzRsyv3uzf0RQqM8amnQBs9RzLqf0aNZD1WFXeVVOBU3kAhjztYiiAdtueA7//7hFsntcH79kUiTVHvRzQe1qOH+yMuyLrECEMXvTnkRJ2H4jZQ5eam3EubCWsGHC9UOkcTogUnh+LDzK28X8Z0KIPRqAYMBBYaQ/LIhzSkDVSOh1DtU2Ahh4rQKYDmfmZRvWIVHamxqKEuwz2JEngShKCXzO6CUIUR1vR8s0USDEYdr9TG5s2v7k1Jf3ZuvdC5UjnmTwY=\",\"k0\":\"orgzXY/eVmGcNuEmLojGGgoNVE/8wkfWmT6LT2gcB3L+NIMaKDtSc8eisU6Obr2EMwrcV2zCseigDypxAA/8BIYzkHy9OcvhqtfdmP3JBssp+RnFSleFQ9m3smlrfdzZ7CSS3Qk6sqxBt749sm+Lg2+fvkuGarSJiLhP83PNbYbKeQdVS6SS6ki1Dj421AWs5D82ayMyGZUhrEt5EtaIN6lTtYPYOBwbtCWAarxVSsXecZv8cbxsjIYf5+Tl2loofckvWIRCNMMxYiqDD5HrXRQHlMQnJSbNJ9ea9xEtR15HxPL5znWbvK6ghi5NPdWooDsI6ASyb/pdr+63P74yMQ==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"CCz21cTV430SBW3sxd28\",\"ts\":1751497963436,\"mhash\":\"c25cd71a3e959f32985f27ac29c5484e\"}", + "requestId": "236252.1897" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:44.033056", + "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/138.0.0.0 Safari/537.36", + "captcha-token": "geetest eyJsb3ROdW1iZXIiOiIzNTc1NzIyOGY1Y2E0MmE0YjZmMTczMjJhMWQ3NDNhZCIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHczNWU1pEbXo4VlNVclFXSlhjekItWVlCOXRYUlczLUhwT3dFRlQtS3lscHdoS3JxMXNseTFUTEpXY0h6dHc3ZGJDX29ZVnlyMUE2WV9yaTZIdlJoMDFPcHkxMzBpOHc4R2hZak1ubEJnWUpGai16cFgzdFA3RG1uXzR1WnhDNGxYRkZpcUN4RnF3TXpkNk9JdUxlUWxhQXBBODM3em9IUm9ISEVnTk55cmdRZWsxQXAzcUx5dXg1VldkZXNWODVuMzYtTGRjbFlMa0RCZC03THlfQzVIVFdWYlUyR1ZxSk40MmNOV0xZTC1iY2s2YnY5c1k5RmhEUlRyX3lxbVVSN2NKS3haLXBHQXYwNmxybnRBeVRpT1lsdURIU1hESk13OXc2STRCVHBxS1dBT3JQMkQ2WnF0YkxERlNrZ3BMVndNbVBsc0Rnc1N0WnJma1ppYXZYcFVlbkZTSkwtWkpUbldkRmdfNE43MXVKVHdzSmZiT1lLMk5QbHBjWWtGUC1TeXBWbW9MX3E2dUtWVWE0MFVsNVpaSDlYaVBiZ3NGOFBxODdLaERhTDJvNjlIdFpMSF9OaVVxTEp4ZDRqZWFtUCIsInBhc3NUb2tlbiI6ImYwNWYyZGZmYzA1YjFjMGIwZThiZDUzMDc2ZGUyMThkOGRlMjY4ZDQ5OTRhN2ZlOWI4N2I2NWE2YzEyMGY5MWEiLCJnZW5UaW1lIjoiMTc1MTQ5Nzk1NiJ9", + "content-type": "application/json", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "d313ecb8-9acc-49ba-b5c6-2cb76d32ded5-0240", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1899" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:46.032977", + "url": "https://futures.mexc.com/api/v1/private/position/list/history_positions?page_num=1&page_size=20", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "A2D4D838AFCFA4C6811D39875960A826" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:46.033980", + "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": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "51A26FCC18CE887A51E248AECA342AA1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:46.033980", + "url": "https://futures.mexc.com/api/v1/private/position/list/history_positions?page_num=1&page_size=20", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "41a9e43b-b25a-424e-9552-860650cc5df8-0244", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1903" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:46.034976", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "917ed0ff-6461-4ec2-83ee-d5f7d332ce82-0245", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1904" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:46.035980", + "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": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "7ab55f38-5759-493a-9487-da477dd4611f-0246", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1905" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:46.566864", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6376e506-c487-4e9c-ae8d-5efee01c951e-0248", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1907" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:46.566864", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "8522CBEBA284F1CF0B5272DA48A4C858" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:48.618684", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "977ab46e-5227-44b0-9af3-f9e0818a06f3-0253", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1913" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:48.618684", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "AE72F15921C91B3AEC078E19DE782E2A" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:49.668159", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "67aa944b-c82d-4f7d-aa6e-eab24c52f9d8-0255", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1916" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:49.668159", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "82070BCC193D9B47B49E37CD169F45B1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:50.176569", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "d5bdebc2-4ae6-4141-9d37-ebd97a290686-0258", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1919" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:50.176569", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "4F8DB1205F94E95E203D614AC6668A48" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:51.202130", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "3181a987-5ddb-4b50-be84-2f1807adcbed-0260", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1922" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:51.202130", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "E189DC69B76698AD1AA21641AA806D60" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.868178", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "6b37047e-7cde-45be-b229-f67a8741f352-0264", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1926" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.868178", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "8dae9f1b-03bd-40c5-8306-06c76e5ed76d-0266", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1928" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.869178", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "GET", + "headers": { + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "962024f8-8789-4b83-9265-4722764f1eee-0267", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1929" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.869178", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "9fb867a1-d40a-453b-baf0-8a4437668990-0268", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1930" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.869178", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b31f34b6-2bfe-43a9-bf0f-40ef355b7c45-0269", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1931" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.869178", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b5a5d3db-44c9-4426-926a-654c8b5554eb-0270", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1932" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.892184", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "5daa6009-6b37-4144-8a10-2de08740e3ec-0273", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1935" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:54.892184", + "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/138.0.0.0 Safari/537.36", + "language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "timezone": "UTC+8", + "trochilus-trace-id": "eaa72167-f522-4171-95a6-6420cd5b9242-0280", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1942" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:55.031823", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "68516734BC4E17E151F2C7644BA7A1D1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:55.031823", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "authorization,language,pragma,trochilus-trace-id,trochilus-uid", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "1B6CF788262C0D95B4F5E6940B68C4F2" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:55.032825", + "url": "https://www.mexc.com/api/dex/v1/data/get_like_list", + "method": "GET", + "headers": { + "Accept": "application/json, text/plain, */*", + "Authorization": "WEBa72ad1106e389ceaa551f6c9c4f349d78ecfddb5590b5b4f534221b96e713807", + "Expires": "0", + "Language": "en-GB", + "N-Timestamp": "1751497974", + "N-Uuid": "8d63d5e5-ecf5-4afa-b872-41e34fd4c2dd", + "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/138.0.0.0 Safari/537.36", + "X-Signature": "a60cffcd30c05fa48a34b314c2b60c17", + "X-Source": "3", + "X-Version": "2", + "X-Version-Web": "2", + "device-id": "CCz21cTV430SBW3sxd28", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "4203185e-104a-41f9-bef8-ce46a8bead32-0286", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1948" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:58.586374", + "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/138.0.0.0 Safari/537.36", + "X-Language": "en-GB", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "trochilus-trace-id": "b944998b-4619-4cc9-b8ca-93ff048997e2-0289", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "236252.1953" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:12:58.587374", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "method": "OPTIONS", + "headers": { + "Accept": "*/*", + "Access-Control-Request-Headers": "language,pragma,trochilus-trace-id,trochilus-uid,x-language", + "Access-Control-Request-Method": "GET", + "Origin": "https://www.mexc.com", + "Sec-Fetch-Mode": "cors", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" + }, + "postData": "", + "requestId": "446EBB9110EA2E26E8678E6D9B7765CD" + } + ], + "responses": [ + { + "type": "response", + "timestamp": "2025-07-03T02:10:58.264418", + "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, cs-desk-user-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.1751497859.23b248cf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "121", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=49, origin; dur=0, ak_p; desc=\"1751497859921_3563037988_598886607_4987_9143_6_35_219\";dur=1", + "x-cache": "Miss from child, Hit from parent" + }, + "requestId": "236252.221" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:58.992315", + "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, cs-desk-user-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.1751497859.23b248d3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=45, origin; dur=223, ak_p; desc=\"1751497859966_3563037988_598886611_26786_8854_6_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "236252.219" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:58.993316", + "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, cs-desk-user-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.1751497859.23b248d2", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131954", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=81, origin; dur=238, ak_p; desc=\"1751497859966_3563037988_598886610_31928_8862_5_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "236252.220" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:58.996315", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497860.23b24963", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497860381_3563037988_598886755_23801_7488_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "17439985460067999046F95C765EEA24" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.004441", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497860.23b2499d", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497860559_3563037988_598886813_25456_7120_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "742BD60FC50D7BE5638D877E675FC637" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.622209", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497860.23b249a2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497860567_3563037988_598886818_26750_7042_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5CA8BD16EB127ED2B46AD0EEAB6D1B58" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.622209", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497860.23b249a1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497860585_3563037988_598886817_29757_8020_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C9E3E2524E2A707F35C5800B65911254" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.622209", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497860.23b249a5", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497860584_3563037988_598886821_32699_11524_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "8D2E806C91045F2351313443D5AD5D30" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.625209", + "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.1751497860.23b2499f", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11:00 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=6, ak_p; desc=\"1751497860566_3563037988_598886815_29690_17582_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.338" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.625209", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497860.23b249e1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497860760_3563037988_598886881_26997_7625_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "3201EF7795C7DF89A637AED7E272E9DC" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.625209", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497860.23b249f5", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497860792_3563037988_598886901_24005_7559_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "F8656A01DBF9CF701DF5AA2B7486F984" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.625209", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497860.23b249bf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=250, origin; dur=5, ak_p; desc=\"1751497860635_3563037988_598886847_25499_15836_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.316" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.626210", + "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, cs-desk-user-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.1751497860.23b24a1c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "321", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=39, origin; dur=0, ak_p; desc=\"1751497860885_3563037988_598886940_4049_12804_12_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": "236252.336" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.626210", + "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, cs-desk-user-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.1751497860.23b24a07", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82799", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:00 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=59, origin; dur=0, ak_p; desc=\"1751497860832_3563037988_598886919_6008_12723_11_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": "236252.335" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.628209", + "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, cs-desk-user-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.1751497860.23b24a0e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "128", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=37, origin; dur=226, ak_p; desc=\"1751497860853_3563037988_598886926_26401_12588_12_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": "236252.337" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.629209", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497861.23b24a3b", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497861004_3563037988_598886971_23947_7114_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "518D3C3467E1F809A065DB644A466228" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.629209", + "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, cs-desk-user-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.1751497861.23b24a6c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "128", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497861138_3563037988_598887020_52_12617_11_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.406" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.632211", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497860.23b24a27", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "767", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=262, origin; dur=6, ak_p; desc=\"1751497860938_3563037988_598886951_26959_18901_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.350" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.632211", + "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, cs-desk-user-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.1751497860.23b24a38", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "319", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=39, origin; dur=226, ak_p; desc=\"1751497860997_3563037988_598886968_26576_11981_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": "236252.405" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.632211", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497861.23b24a6b", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497861134_3563037988_598887019_23840_8797_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "67B07E2DF9A63C6270617D62C1DA19AD" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.632211", + "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, cs-desk-user-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.1751497861.23b24a4e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=43, origin; dur=227, ak_p; desc=\"1751497861054_3563037988_598886990_26999_13739_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": "236252.393" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.632211", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497861.23b24a4f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "737", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=268, origin; dur=5, ak_p; desc=\"1751497861054_3563037988_598886991_27320_12873_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.396" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:10:59.633208", + "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, cs-desk-user-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.1751497860.23b24a37", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82799", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=83, origin; dur=231, ak_p; desc=\"1751497860997_3563037988_598886967_31491_11464_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": "236252.404" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.240483", + "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.1751497860.23b249b7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "844", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=822, origin; dur=6, ak_p; desc=\"1751497860611_3563037988_598886839_83298_17207_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.352" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.240483", + "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.1751497860.23b249b2", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "664", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=832, origin; dur=8, ak_p; desc=\"1751497860608_3563037988_598886834_84238_17061_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.348" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.240483", + "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.1751497860.23b249b6", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "59", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=834, origin; dur=8, ak_p; desc=\"1751497860611_3563037988_598886838_84648_17407_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.351" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.773365", + "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.1751497860.23b249ba", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=876, origin; dur=6, ak_p; desc=\"1751497860611_3563037988_598886842_88739_12287_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.353" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.773365", + "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.1751497861.23b24a76", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2568", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=304, origin; dur=9, ak_p; desc=\"1751497861161_3563037988_598887030_31314_19946_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.435" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.776366", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497861.23b24aac", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "735", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=270, origin; dur=7, ak_p; desc=\"1751497861360_3563037988_598887084_27682_12090_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.407" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.776366", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497859&interval=Min15&start=1750597859", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497861.23b24ac9", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497861456_3563037988_598887113_23775_9094_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B2285B62ACD07F1A35B25A2BBACF6979" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497861.23b24ab7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "457", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=249, origin; dur=6, ak_p; desc=\"1751497861391_3563037988_598887095_25497_13327_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.433" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "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.1751497861.23b24af7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "80", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=48, origin; dur=0, ak_p; desc=\"1751497861605_3563037988_598887159_4817_18816_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": "236252.499" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "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.1751497861.23b24af6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=51, origin; dur=0, ak_p; desc=\"1751497861605_3563037988_598887158_5194_18240_8_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": "236252.498" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "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.1751497861.23b24abb", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=128, origin; dur=0, ak_p; desc=\"1751497861406_3563037988_598887099_12794_19531_7_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) (-) from parent" + }, + "requestId": "236252.460" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "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.1751497861.23b24aa6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9205", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=290, origin; dur=5, ak_p; desc=\"1751497861345_3563037988_598887078_29656_19291_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.457" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497861.23b24ae9", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497861561_3563037988_598887145_26722_11087_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "7F6E9953F8C8AAFF0FE2E9827FC8A040" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497861.23b24af9", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497861608_3563037988_598887161_25307_11032_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D8362F69CDE8F85664EAB2DF7980C314" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.777366", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497861.23b24aed", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=237, origin; dur=5, ak_p; desc=\"1751497861577_3563037988_598887149_24219_11512_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.493" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.778366", + "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.1751497861.23b24aee", + "cache-control": "max-age=0,must-revalidate", + "content-length": "183", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=286, origin; dur=5, ak_p; desc=\"1751497861578_3563037988_598887150_29181_20213_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.494" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.778366", + "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.1751497861.23b24ae7", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "394", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11:01 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=319, origin; dur=6, ak_p; desc=\"1751497861555_3563037988_598887143_32551_20758_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.492" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.778366", + "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.1751497861.23b24af8", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=303, origin; dur=6, ak_p; desc=\"1751497861606_3563037988_598887160_31046_17898_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.500" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.778366", + "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.1751497861.23b24b00", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "277", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=284, origin; dur=5, ak_p; desc=\"1751497861626_3563037988_598887168_28980_21482_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.504" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.778366", + "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, cs-desk-user-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.1751497861.23b24b44", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=75, origin; dur=0, ak_p; desc=\"1751497861846_3563037988_598887236_7492_21982_7_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": "236252.491" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:00.838411", + "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, cs-desk-user-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.1751497861.23b24b72", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:01 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497861954_3563037988_598887282_68_19114_7_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.503" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.393003", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497859&interval=Min15&start=1750597859", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497861.23b24b24", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "33786", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=257, origin; dur=13, ak_p; desc=\"1751497861714_3563037988_598887204_27059_14079_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.461" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.395005", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497862.23b24b91", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497862017_3563037988_598887313_24192_13158_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "F95D95D80D63318EA04676C753675A52" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.396006", + "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.1751497861.23b24aa4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "424", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=851, origin; dur=6, ak_p; desc=\"1751497861345_3563037988_598887076_85821_17289_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.455" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.396006", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497862.23b24bb8", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497862107_3563037988_598887352_24090_12158_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "2D211F63FA078DA4C090079B0186E38B" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.425527", + "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.1751497862.23b24b93", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=283, origin; dur=6, ak_p; desc=\"1751497862021_3563037988_598887315_29077_19668_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.513" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.425527", + "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.1751497862.23b24bb9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "965", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=287, origin; dur=10, ak_p; desc=\"1751497862107_3563037988_598887353_29793_17959_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.524" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.425527", + "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.1751497861.23b24aa5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=293, origin; dur=8, ak_p; desc=\"1751497861345_3563037988_598887077_30233_17140_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.456" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.425527", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497862.23b24c00", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=249, origin; dur=7, ak_p; desc=\"1751497862288_3563037988_598887424_25585_18560_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.514" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.426528", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497862.23b24c1d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3061", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=241, origin; dur=9, ak_p; desc=\"1751497862369_3563037988_598887453_25039_18469_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.525" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.426528", + "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.1751497862.23b24c15", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=287, origin; dur=6, ak_p; desc=\"1751497862337_3563037988_598887445_29295_19277_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.528" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.497530", + "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.1751497862.23b24c63", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "550", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:02 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=330, origin; dur=6, ak_p; desc=\"1751497862613_3563037988_598887523_33616_21404_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.542" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.497530", + "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.1751497862.23b24cbe", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=55, origin; dur=0, ak_p; desc=\"1751497862931_3563037988_598887614_5761_17604_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": "236252.548" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.498532", + "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.1751497862.23b24cbf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=69, origin; dur=0, ak_p; desc=\"1751497862928_3563037988_598887615_6927_20150_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": "236252.549" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.498532", + "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.1751497863.23b24ce9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497863028_3563037988_598887657_81_19684_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.550" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.498532", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497862.23b24c90", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=246, origin; dur=5, ak_p; desc=\"1751497862790_3563037988_598887568_25090_12763_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.544" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:01.499531", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497862.23b24cc3", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497862938_3563037988_598887619_26006_7846_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B2D3AAF2474DDF7221F80726D818484D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.011126", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497862.23b24cc4", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497862947_3563037988_598887620_27497_8244_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "6B8DD626250D2996B533A49B876672A4" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.011126", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497862.23b24cc7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=240, origin; dur=6, ak_p; desc=\"1751497862950_3563037988_598887623_24731_17827_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.555" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.011126", + "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.1751497862.23b24cc5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "193", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=280, origin; dur=6, ak_p; desc=\"1751497862950_3563037988_598887621_28697_18188_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.551" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.011126", + "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.1751497862.23b24cc6", + "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 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=292, origin; dur=8, ak_p; desc=\"1751497862950_3563037988_598887622_30076_18004_6_0_219\";dur=1", + "traceparent": "00-b806140bfe082bb41eef7f288e0fe5ba-cca8e0ebc7707010-00", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.552" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.012127", + "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.1751497863.23b24d18", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "5510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=166, origin; dur=0, ak_p; desc=\"1751497863190_3563037988_598887704_16631_21706_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": "236252.558" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.014127", + "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.1751497863.23b24d5d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497863413_3563037988_598887773_85_18786_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.561" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.014127", + "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.1751497863.23b24d5e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497863413_3563037988_598887774_124_18370_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.562" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.014127", + "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, cs-desk-user-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.1751497863.23b24d2b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82731", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=64, origin; dur=230, ak_p; desc=\"1751497863238_3563037988_598887723_29382_14097_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": "236252.554" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.014127", + "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, cs-desk-user-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.1751497863.23b24d27", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=72, origin; dur=229, ak_p; desc=\"1751497863220_3563037988_598887719_30606_12921_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": "236252.553" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.014127", + "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.1751497863.23b24d4d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "683", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=292, origin; dur=7, ak_p; desc=\"1751497863355_3563037988_598887757_29901_20068_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.560" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.532339", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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, cf-cache-status\nx-cache", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:03 GMT", + "expires": "Wed, 02 Jul 2025 23:11:03 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": "ak_p; desc=\"1751497863640_3563037967_281553284_27182_10702_12_34_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "AB8EA76600F8D1E1F55ABAC70276A3CB" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:02.533340", + "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.1751497863.23b24e03", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1035", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:04 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=292, origin; dur=6, ak_p; desc=\"1751497863712_3563037988_598887939_29832_19563_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.564" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:03.039832", + "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-allow-origin": "https://www.mexc.com", + "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 23:11:04 GMT", + "expires": "Wed, 02 Jul 2025 23:11:04 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=628, origin; dur=7, ak_p; desc=\"1751497863980_3563037966_730068486_63552_16840_5_33_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "c165952409f693a6" + }, + "requestId": "236252.339" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:06.680611", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497867.23b253f4", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:07 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497867735_3563037988_598889460_23888_12472_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "EA5653EB3B4CD4190D9348D20F7C5022" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:06.681611", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497867.23b253f3", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:08 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497867745_3563037988_598889459_28406_13531_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "29E918129740E6370B65E02954B190CF" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:06.681611", + "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.1751497867.23b25403", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:08 GMT", + "expires": "Wed, 02 Jul 2025 23:11:08 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=286, origin; dur=6, ak_p; desc=\"1751497867760_3563037988_598889475_29238_19344_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.579" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:06.682612", + "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, cs-desk-user-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.1751497868.23b25472", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:08 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=48, origin; dur=0, ak_p; desc=\"1751497868042_3563037988_598889586_4831_18887_11_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "236252.581" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:06.682612", + "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.1751497867.23b25407", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:08 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=136, origin; dur=0, ak_p; desc=\"1751497867761_3563037988_598889479_13640_18222_10_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": "236252.586" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:06.682612", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497868.23b25466", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3061", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:08 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=252, origin; dur=10, ak_p; desc=\"1751497867997_3563037988_598889574_26286_21051_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.582" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.258782", + "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.1751497873.23b25cc7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:13 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497873878_3563037988_598891719_671_21396_34_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.834" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.258782", + "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.1751497873.23b25cc8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "80", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:13 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497873879_3563037988_598891720_671_19510_34_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.835" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.261784", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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, cf-cache-status\nx-cache", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11:14 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": "ak_p; desc=\"1751497873855_3563037967_281565016_26247_12223_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "7F11315F687B9890D310069ED0F555A1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.261784", + "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.1751497873.23b25cd6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=110, origin; dur=0, ak_p; desc=\"1751497873914_3563037988_598891734_11396_16853_45_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": "236252.854" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.261784", + "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.1751497874.23b25d00", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=50, origin; dur=0, ak_p; desc=\"1751497874017_3563037988_598891776_5018_19626_30_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": "236252.877" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.262781", + "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.1751497873.23b25cc4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11:14 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=\"1751497873877_3563037988_598891716_28939_17591_24_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.828" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.262781", + "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.1751497873.23b25cc0", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "424", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=281, origin; dur=8, ak_p; desc=\"1751497873874_3563037988_598891712_29105_20298_24_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.825" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.263787", + "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.1751497873.23b25cc3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9205", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=290, origin; dur=6, ak_p; desc=\"1751497873877_3563037988_598891715_30074_22643_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.827" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.263787", + "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.1751497873.23b25cd1", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=279, origin; dur=6, ak_p; desc=\"1751497873911_3563037988_598891729_28687_13169_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.839" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.263787", + "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.1751497873.23b25cc9", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "91", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=300, origin; dur=7, ak_p; desc=\"1751497873879_3563037988_598891721_31351_26610_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.836" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.263787", + "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.1751497873.23b25cd4", + "cache-control": "max-age=0,must-revalidate", + "content-length": "183", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=283, origin; dur=5, ak_p; desc=\"1751497873914_3563037988_598891732_29147_17209_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.848" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.265783", + "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.1751497873.23b25ce7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2568", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=293, origin; dur=10, ak_p; desc=\"1751497873960_3563037988_598891751_30253_20948_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.856" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.265783", + "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.1751497873.23b25cf5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=70, origin; dur=226, ak_p; desc=\"1751497873986_3563037988_598891765_29756_21867_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": "236252.861" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.840639", + "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.1751497874.23b25cff", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1310", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=287, origin; dur=6, ak_p; desc=\"1751497874016_3563037988_598891775_29325_19838_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.876" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.840639", + "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-allow-origin": "https://www.mexc.com", + "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 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11:14 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=252, origin; dur=8, ak_p; desc=\"1751497874136_3563037966_730076759_26012_19141_5_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "0c873c3d49fc9c9c" + }, + "requestId": "236252.829" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.863645", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497874.23b25d50", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497874309_3563037988_598891856_26744_13106_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C412E29948AA332CD5B032262E24FC6C" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.878645", + "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.1751497874.23b25d51", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "277", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=289, origin; dur=5, ak_p; desc=\"1751497874311_3563037988_598891857_29356_23394_17_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.893" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.880641", + "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, cs-desk-user-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.1751497874.23b25da8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=56, origin; dur=0, ak_p; desc=\"1751497874599_3563037988_598891944_5601_17872_16_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "236252.892" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.946842", + "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.1751497874.23b25db4", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "965", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=280, origin; dur=7, ak_p; desc=\"1751497874653_3563037988_598891956_28711_18428_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.909" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.946842", + "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.1751497874.23b25db5", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "268", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:14 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=289, origin; dur=5, ak_p; desc=\"1751497874653_3563037988_598891957_29427_18254_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.911" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.947843", + "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.1751497873.23b25cc1", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=289, origin; dur=9, ak_p; desc=\"1751497873874_3563037988_598891713_29976_20156_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.826" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.951842", + "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.1751497875.23b25e9a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=1, ak_p; desc=\"1751497875485_3563037988_598892186_130_20477_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.935" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.952844", + "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.1751497875.23b25e9b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=1, ak_p; desc=\"1751497875485_3563037988_598892187_143_22010_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.936" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.952844", + "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.1751497875.23b25eaa", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=1, ak_p; desc=\"1751497875523_3563037988_598892202_91_20806_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.937" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.952844", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497875.23b25e9e", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497875489_3563037988_598892190_23963_11941_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "AECF6FD03EFDD95CCC3EA7E307A6B638" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.953846", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497875.23b25e9c", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497875489_3563037988_598892188_26125_7170_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D00CC8EF2015ED4FAF4609BE75936F5D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.953846", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497875.23b25e9d", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497875489_3563037988_598892189_26880_7611_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "7F64EE227D04E54754403990F0A03BC0" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.954842", + "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.1751497875.23b25f89", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=1, ak_p; desc=\"1751497875879_3563037988_598892425_93_21041_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.957" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.954842", + "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.1751497875.23b25f8a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "549", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:15 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=1, ak_p; desc=\"1751497875879_3563037988_598892426_112_20932_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.958" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.954842", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497875.23b25f2c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:16 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=238, origin; dur=9, ak_p; desc=\"1751497875750_3563037988_598892332_24717_20497_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.940" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.955844", + "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, cs-desk-user-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.1751497875.23b25f3d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82777", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:16 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=70, origin; dur=226, ak_p; desc=\"1751497875793_3563037988_598892349_29693_13715_10_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": "236252.939" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.955844", + "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, cs-desk-user-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.1751497875.23b25f33", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:16 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=REVALIDATE, edge; dur=73, origin; dur=235, ak_p; desc=\"1751497875774_3563037988_598892339_30833_13300_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": "236252.938" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.955844", + "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.1751497876.23b2603d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "5510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:16 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497876442_3563037988_598892605_96_20334_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.959" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.957843", + "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.1751497876.23b260a7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1036", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:17 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=291, origin; dur=6, ak_p; desc=\"1751497876790_3563037988_598892711_29677_20179_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.961" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.993843", + "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.1751497877.23b2615d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:17 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497877407_3563037988_598892893_136_21062_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.989" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.993843", + "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-allow-origin": "https://futures.testnet.mexc.com", + "access-control-expose-headers": "x-cache, cf-cache-status, x-cache", + "akamai-grn": "0.24a55fd4.1751497877.23b2615b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:17 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=53, origin; dur=0, ak_p; desc=\"1751497877406_3563037988_598892891_5396_20575_10_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": "236252.986" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:16.994846", + "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.1751497877.23b2615c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1309", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:17 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=281, origin; dur=16, ak_p; desc=\"1751497877406_3563037988_598892892_29818_21266_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.988" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:20.123381", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497881.23b26650", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:21 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497881642_3563037988_598894160_25967_13344_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0FA3B8785118E3C78962D16C690CA6E9" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:20.124381", + "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, cs-desk-user-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.1751497881.23b266be", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:21 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497881924_3563037988_598894270_89_21885_8_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.1018" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:24.262801", + "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.1751497885.23b26ad4", + "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 23:11:25 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=283, origin; dur=6, ak_p; desc=\"1751497885492_3563037988_598895316_28910_19953_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1048" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:25.314597", + "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, cs-desk-user-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.1751497886.23b26c6e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:26 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497886815_3563037988_598895726_551_16652_11_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.1061" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:25.314597", + "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.1751497886.23b26c6d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:26 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=HIT, edge; dur=1, ak_p; desc=\"1751497886815_3563037988_598895725_554_22351_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.1060" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:25.314597", + "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.1751497886.23b26c6b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:27 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=91, origin; dur=0, ak_p; desc=\"1751497886812_3563037988_598895723_9317_17597_11_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) (-) from parent" + }, + "requestId": "236252.1057" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:25.315597", + "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.1751497886.23b26c6a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:27 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=275, origin; dur=6, ak_p; desc=\"1751497886812_3563037988_598895722_28296_17759_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1055" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:25.315597", + "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.1751497886.23b26c6c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1309", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:27 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=287, origin; dur=5, ak_p; desc=\"1751497886812_3563037988_598895724_29457_17430_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1059" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:36.957113", + "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.1751497898.23b27af0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:38 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=\"1751497898443_3563037988_598899440_2486_19384_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.1086" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:36.957113", + "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.1751497898.23b27aed", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:38 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=54, origin; dur=0, ak_p; desc=\"1751497898441_3563037988_598899437_7611_21296_13_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": "236252.1083" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:36.969114", + "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.1751497898.23b27ad5", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:38 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=284, origin; dur=6, ak_p; desc=\"1751497898356_3563037988_598899413_29066_14619_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1077" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:36.969114", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497898.23b27ae2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:11:38 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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": "ak_p; desc=\"1751497898418_3563037988_598899426_26479_15293_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "3D7AA51F7B43E54CA560349598532A8D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:36.970113", + "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.1751497898.23b27aec", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "37", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:38 GMT", + "expires": "Wed, 02 Jul 2025 23:11:38 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=281, origin; dur=8, ak_p; desc=\"1751497898441_3563037988_598899436_31122_26369_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1081" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:36.970113", + "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.1751497898.23b27aee", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1310", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:38 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=288, origin; dur=6, ak_p; desc=\"1751497898441_3563037988_598899438_31612_21230_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1085" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:11:37.474479", + "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, cs-desk-user-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.1751497898.23b27b33", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:11:38 GMT", + "expires": "Wed, 02 Jul 2025 23:11: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=45, origin; dur=0, ak_p; desc=\"1751497898708_3563037988_598899507_4558_18866_7_0_219\";dur=1", + "x-cache": "Miss from child, TCP_MEM_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "236252.1087" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:03.988120", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497925.23b29c06", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497925325_3563037988_598907910_28873_7138_28_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "4E85BF35EB682AC327D40909C46B4E17" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:03.989119", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497925.23b29c08", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497925326_3563037988_598907912_29051_7049_28_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0A99F960E3986B16859832BB7CE68A9F" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:03.989119", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497925.23b29c07", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497925325_3563037988_598907911_29174_10161_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D7691B7CE7D63D7648D002AD64FBBBB4" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:03.990119", + "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, cs-desk-user-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.1751497925.23b29c03", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131986", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=54, origin; dur=0, ak_p; desc=\"1751497925325_3563037988_598907907_5354_7888_24_0_219\";dur=1", + "x-cache": "Miss from child, Hit from parent" + }, + "requestId": "236252.1360" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:03.990119", + "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, cs-desk-user-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.1751497925.23b29c04", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "121", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=REVALIDATE, edge; dur=40, origin; dur=219, ak_p; desc=\"1751497925325_3563037988_598907908_25947_7169_24_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "236252.1361" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:03.990119", + "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, cs-desk-user-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.1751497925.23b29c02", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=REVALIDATE, edge; dur=42, origin; dur=221, ak_p; desc=\"1751497925325_3563037988_598907906_26330_7213_25_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "236252.1359" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.134315", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497925.23b29c53", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=287, origin; dur=6, ak_p; desc=\"1751497925638_3563037988_598907987_29334_8378_20_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1364" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.134315", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497925.23b29c51", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15112", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=288, origin; dur=16, ak_p; desc=\"1751497925629_3563037988_598907985_30430_8278_20_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1362" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.135315", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497925.23b29c54", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13157", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:05 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=285, origin; dur=9, ak_p; desc=\"1751497925638_3563037988_598907988_29422_12723_20_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1363" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.143322", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497925.23b29ca8", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497925860_3563037988_598908072_29021_8940_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "EEE37D3EB150DD0833231B56BE5BFD98" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.172840", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29cef", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926146_3563037988_598908143_25675_7082_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "353B20D8BBA22B098949FE7D04F60C89" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.172840", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29cea", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926138_3563037988_598908138_26753_6662_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B3AE02FD7DBDD9838D0E1D594C5381BD" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.172840", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29cee", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926146_3563037988_598908142_26228_7119_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "4ADE768508B670D0D78B0372F111D072" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.172840", + "url": "https://futures.mexc.com/api/v1/contract/ticker?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29cfb", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926159_3563037988_598908155_26584_6822_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0E50936C46DCA0DA3B408C5669DC460E" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.173838", + "url": "https://futures.mexc.com/api/v1/contract/funding_rate/ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29d01", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926167_3563037988_598908161_26605_6868_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "4693D3C52E5FA33AF4A914CADE39159A" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.173838", + "url": "https://futures.mexc.com/api/v1/contract/concept_plates/list/v2?lang=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29cf1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926146_3563037988_598908145_28401_13589_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "BD2C4F22CB30C39063B9BC2CF2C7BD1F" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.173838", + "url": "https://futures.mexc.com/api/v1/private/user_pref/get", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29cf2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926146_3563037988_598908146_28949_9998_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E7DB48EA614FBA7E20A10682D0CA0C74" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.173838", + "url": "https://otc.mexc.com/api/asset/fiat_switch/v2", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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, cf-cache-status\nx-cache", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12:06 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": "ak_p; desc=\"1751497926145_3563037967_281619172_27630_11697_30_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "440D986CCDE66DD1E03A9762456B87E7" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.174838", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29cf0", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926146_3563037988_598908144_29296_10027_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "486A1EA90CFE2DDC77834AF0520B392E" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.174838", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/ETH_USDT?language=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d05", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926167_3563037988_598908165_28912_10249_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B09C50CC9E54BDF6BEDAA81B8C2A2450" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.174838", + "url": "https://futures.mexc.com/api/v1/private/riskSymbols/tips/list?language=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d04", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926167_3563037988_598908164_29004_10254_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D9673C86B70DEB7E5CE8365535B581D4" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.176839", + "url": "https://futures.mexc.com/api/v1/contract/ticker?symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29d00", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926179_3563037988_598908160_34693_9101_41_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "CABFA4E014E4B87523C3916F86D204A1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.179838", + "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.1751497926.23b29d0f", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "59", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=240, origin; dur=9, ak_p; desc=\"1751497926187_3563037988_598908175_26912_18595_51_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1492" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.179838", + "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.1751497926.23b29d14", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "190", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=236, origin; dur=21, ak_p; desc=\"1751497926190_3563037988_598908180_26979_24108_51_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1513" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.179838", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497926.23b29d15", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=275, origin; dur=3, ak_p; desc=\"1751497926191_3563037988_598908181_29193_11195_51_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1458" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.179838", + "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.1751497926.23b29d13", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=279, origin; dur=6, ak_p; desc=\"1751497926190_3563037988_598908179_30874_15593_51_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1494" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.179838", + "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.1751497926.23b29d0d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "664", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=281, origin; dur=6, ak_p; desc=\"1751497926187_3563037988_598908173_30658_21434_51_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1489" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.179838", + "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.1751497926.23b29d10", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "844", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=288, origin; dur=6, ak_p; desc=\"1751497926187_3563037988_598908176_31443_18419_52_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1493" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.182840", + "url": "https://futures.mexc.com/api/v1/private/position/close_all_enable", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29d70", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926499_3563037988_598908272_25949_7360_37_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0B95D157DB05AC557D1D685029E14A83" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.182840", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web&symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497926.23b29d79", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926513_3563037988_598908281_26285_8557_37_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "EE281617A7E9C36CE53113F00A4081D7" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:05.183845", + "url": "https://futures.mexc.com/copyFutures/api/v1/myRole", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d71", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926499_3563037988_598908273_29230_11951_37_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "90AD32BD1CFACD34642D803F0AD55A95" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.144307", + "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.1751497926.23b29ceb", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12:06 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=118, ak_p; desc=\"1751497926143_3563037988_598908139_36603_23184_40_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1479" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.144307", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751497924299", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d03", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926167_3563037988_598908163_82963_10333_48_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "93C3ACCE2D63428AF11DFB462616095C" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.145305", + "url": "https://futures.mexc.com/api/v1/private/account/userBonusGuideFlag", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d06", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926167_3563037988_598908166_84552_10576_48_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "23D5553382C9F612017488FF9E691260" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.145305", + "url": "https://futures.mexc.com/api/v1/private/account/checkIsTyroAndWaitOrder", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d02", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926167_3563037988_598908162_85422_10303_48_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "78895FDF7AF5C0C7597AD4C6C76245D1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.148305", + "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, cs-desk-user-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.1751497926.23b29d7a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "130", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=REVALIDATE, edge; dur=44, origin; dur=224, ak_p; desc=\"1751497926516_3563037988_598908282_26864_11743_49_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": "236252.1477" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.148305", + "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, cs-desk-user-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.1751497926.23b29d80", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "324", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=REVALIDATE, edge; dur=40, origin; dur=215, ak_p; desc=\"1751497926531_3563037988_598908288_25691_12633_49_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": "236252.1476" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.148305", + "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, cs-desk-user-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.1751497926.23b29d7b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82805", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=REVALIDATE, edge; dur=58, origin; dur=225, ak_p; desc=\"1751497926516_3563037988_598908283_28383_11539_49_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": "236252.1475" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.149312", + "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-allow-origin": "https://www.mexc.com", + "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 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12:06 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=265, origin; dur=16, ak_p; desc=\"1751497926517_3563037966_730121277_28084_21678_24_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "d5db605e126e5c15" + }, + "requestId": "236252.1480" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.149312", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497926.23b29d82", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "236", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=280, origin; dur=4, ak_p; desc=\"1751497926531_3563037988_598908290_28567_17053_49_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1496" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.149312", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497926.23b29d84", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=275, origin; dur=4, ak_p; desc=\"1751497926533_3563037988_598908292_28199_23139_49_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1511" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.149312", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497926.23b29d81", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "767", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=289, origin; dur=4, ak_p; desc=\"1751497926531_3563037988_598908289_29423_16746_49_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1491" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.149312", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497926.23b29d85", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "219", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=278, origin; dur=9, ak_p; desc=\"1751497926533_3563037988_598908293_29047_22901_49_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1510" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.150307", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497926.23b29d83", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=290, origin; dur=11, ak_p; desc=\"1751497926533_3563037988_598908291_30457_15086_49_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1478" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.150307", + "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, cs-desk-user-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.1751497926.23b29de6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "130", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=1, ak_p; desc=\"1751497926887_3563037988_598908390_205_12704_49_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.1507" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.151305", + "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, cs-desk-user-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.1751497926.23b29de7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "324", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=1, ak_p; desc=\"1751497926887_3563037988_598908391_220_12528_49_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.1506" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.151305", + "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, cs-desk-user-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.1751497926.23b29de8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82805", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=1, ak_p; desc=\"1751497926888_3563037988_598908392_244_12277_49_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.1505" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.153482", + "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, cs-desk-user-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.1751497926.23b29df0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "35", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:06 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=44, origin; dur=0, ak_p; desc=\"1751497926902_3563037988_598908400_6022_14115_49_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": "236252.1555" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.155483", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate_save", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d18", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926203_3563037988_598908184_88337_11346_44_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0A66C832FB029F54199379378B1ABDD2" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.155483", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d31", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926320_3563037988_598908209_84525_6799_44_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "BBFC7A6133C43CD366375B3487EFF980" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.155483", + "url": "https://futures.mexc.com/api/v1/contract/deals/ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497926.23b29d32", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497926320_3563037988_598908210_86826_6806_44_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "BC68A6D63291F799A92BD8332AFA45C0" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.158484", + "url": "https://futures.mexc.com/api/v1/contract/depth_step/ETH_USDT?step=0.01", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29e1a", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927045_3563037988_598908442_28874_7479_54_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "8B823F5117F0DE90C6AC563BE4F9FED3" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.159483", + "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.1751497926.23b29db5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1781", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12:07 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=275, origin; dur=49, ak_p; desc=\"1751497926679_3563037988_598908341_32533_21194_72_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1566" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.159483", + "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, cs-desk-user-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.1751497926.23b29df1", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "702", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=44, origin; dur=219, ak_p; desc=\"1751497926902_3563037988_598908401_27057_12820_72_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": "236252.1558" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.159483", + "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.1751497926.23b29dda", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "68", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=290, origin; dur=17, ak_p; desc=\"1751497926856_3563037988_598908378_30791_21144_72_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1572" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.159483", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497926.23b29df2", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "52", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=277, origin; dur=8, ak_p; desc=\"1751497926902_3563037988_598908402_29296_17549_72_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1556" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.161484", + "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.1751497927.23b29e1b", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "90", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=13, ak_p; desc=\"1751497927045_3563037988_598908443_24726_22231_78_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1599" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.161484", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751497924299", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29e1d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=4, ak_p; desc=\"1751497927069_3563037988_598908445_28096_21887_78_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1509" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.162489", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497927.23b29e1e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=6, ak_p; desc=\"1751497927069_3563037988_598908446_28296_20498_78_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1512" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.162489", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497927.23b29e1f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=291, origin; dur=4, ak_p; desc=\"1751497927070_3563037988_598908447_29673_21263_78_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1508" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:06.163485", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497925&interval=Min15&start=1750597925", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29e50", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927215_3563037988_598908496_28486_8125_55_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "041B254A946763AF757D64AB8B22B366" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.069608", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497927.23b29e5c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "724", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=279, origin; dur=4, ak_p; desc=\"1751497927236_3563037988_598908508_28306_13123_64_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1528" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.070609", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497927.23b29e5b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "172", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=288, origin; dur=9, ak_p; desc=\"1751497927236_3563037988_598908507_29764_20380_64_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1514" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.070609", + "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.1751497927.23b29e99", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=60, origin; dur=0, ak_p; desc=\"1751497927446_3563037988_598908569_6090_20337_64_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) (-) from parent" + }, + "requestId": "236252.1630" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.072612", + "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.1751497927.23b29e52", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=204, ak_p; desc=\"1751497927216_3563037988_598908498_44008_18266_45_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1602" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.073609", + "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.1751497927.23b29e85", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "424", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=244, origin; dur=6, ak_p; desc=\"1751497927407_3563037988_598908549_25015_18618_45_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1624" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.073609", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497927.23b29e8e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "465", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=286, origin; dur=4, ak_p; desc=\"1751497927424_3563037988_598908558_28987_14425_45_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1600" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.073609", + "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.1751497927.23b29e87", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9205", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=279, origin; dur=6, ak_p; desc=\"1751497927407_3563037988_598908551_28569_18282_45_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1626" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.078610", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497927.23b29f01", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927775_3563037988_598908673_25871_14944_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "402613096A9CE31B2E2D7C7F2E4C6D1C" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.078610", + "url": "https://futures.mexc.com/api/v1/contract/country/black/contractIds", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29ef1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927757_3563037988_598908657_28952_16034_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "A2B6E13A8F17019C949CE44ED31331E2" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.079610", + "url": "https://futures.mexc.com/api/v1/private/account/asset_book/order_deal_fee/total", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29ef0", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927757_3563037988_598908656_29208_16069_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5A02E3298F618A6DFAE48F3856B58CBB" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.079610", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29efa", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927775_3563037988_598908666_27962_9907_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "3D13E552A86C685121699646A708AB66" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.079610", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29efd", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927775_3563037988_598908669_28489_9845_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "45FE3FF9FDC2050DF5D40BEC165AF876" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.079610", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29efc", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927775_3563037988_598908668_28489_11985_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5F68C0EB32DA1E3DE0DBC7354AB5B8DB" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.079610", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29efe", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927775_3563037988_598908670_28841_9759_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "01B731CDE7A794F8350051366FC3D12C" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.080609", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29efb", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927775_3563037988_598908667_28690_15086_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "DBB2067BAF95F6C6FA039267861F8888" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.080609", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29eff", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927779_3563037988_598908671_28760_15238_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B426959CE8A05C24B55D93994B449F12" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.080609", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29f00", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927784_3563037988_598908672_29765_8256_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E600BA2814A637AB17C6A6C8F9B6A1CB" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.080609", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497927.23b29f06", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927804_3563037988_598908678_26546_15717_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "8394AEB0780FE89931F795290E142529" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.080609", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29ef9", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927791_3563037988_598908665_30630_10074_58_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E73E7ABBD0A51FF89F5D553EB9670760" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.082608", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497927.23b29ebe", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "726", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=279, origin; dur=4, ak_p; desc=\"1751497927609_3563037988_598908606_29667_12510_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1529" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.082608", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751497925&interval=Min15&start=1750597925", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29ebf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "33787", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:07 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=305, origin; dur=12, ak_p; desc=\"1751497927595_3563037988_598908607_31730_13092_47_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1603" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.083608", + "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.1751497927.23b29ef2", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "55", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=236, origin; dur=6, ak_p; desc=\"1751497927758_3563037988_598908658_24211_21028_39_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1657" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.083608", + "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.1751497927.23b29ef3", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "90", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=264, origin; dur=14, ak_p; desc=\"1751497927758_3563037988_598908659_27744_20912_39_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1661" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.083608", + "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.1751497927.23b29ef4", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1652", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=239, origin; dur=36, ak_p; desc=\"1751497927758_3563037988_598908660_27493_20709_39_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1662" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.083608", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497927.23b29ef6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=281, origin; dur=5, ak_p; desc=\"1751497927758_3563037988_598908662_28632_16713_39_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1673" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.083608", + "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.1751497927.23b29ef5", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "394", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12:08 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=276, origin; dur=6, ak_p; desc=\"1751497927758_3563037988_598908661_28249_28604_39_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1672" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.083608", + "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.1751497927.23b29f07", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "277", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=238, origin; dur=5, ak_p; desc=\"1751497927807_3563037988_598908679_24295_22698_39_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1676" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.083608", + "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.1751497927.23b29ef7", + "cache-control": "max-age=0,must-revalidate", + "content-length": "183", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=266, origin; dur=8, ak_p; desc=\"1751497927759_3563037988_598908663_27483_24356_39_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1674" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.084609", + "url": "https://futures.mexc.com/api/v1/private/profile/kline/get", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497927.23b29f3a", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497927973_3563037988_598908730_29117_11704_56_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "CD500E44093EF1C3C738D3498DF0164E" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:08.085610", + "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, cs-desk-user-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.1751497928.23b29f78", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=66, origin; dur=0, ak_p; desc=\"1751497928133_3563037988_598908792_6784_19828_46_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": "236252.1671" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.782527", + "url": "https://futures.mexc.com/api/v1/private/stoporder/open_orders?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f70", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928118_3563037988_598908784_27904_6679_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "53A6353812F5AC78680459DD3AA90E45" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.782527", + "url": "https://futures.mexc.com/api/v1/private/account/assets", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f71", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928118_3563037988_598908785_28619_6572_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0F983BC0AE08C38179782C95E92030BD" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.783532", + "url": "https://futures.mexc.com/api/v1/private/position/position_mode?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f73", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928118_3563037988_598908787_29035_6549_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C3A49207515AC052A14A7A17189024DF" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.783532", + "url": "https://futures.mexc.com/api/v1/private/position/open_positions?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f6b", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928118_3563037988_598908779_28873_10095_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D23C784632AC40524325F0F3041BD7E3" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.783532", + "url": "https://futures.mexc.com/api/v1/private/planorder/list/orders?page_size=200&states=1", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f6c", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928118_3563037988_598908780_28636_11380_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "7D4B98D73FA45EF58FE3F0DF9036CE68" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.784529", + "url": "https://futures.mexc.com/api/v1/private/order/list/open_orders?page_size=200", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f6e", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928118_3563037988_598908782_28818_10047_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "6D2A32048C91F38B6B3C638E104534E9" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.784529", + "url": "https://futures.mexc.com/api/v1/private/trackorder/list/orders?pageIndex=1&pageSize=200&states=0%2C1", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f6d", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928118_3563037988_598908781_28570_15085_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "51841D94B537BA3F083BBB37F5DBE3EE" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.784529", + "url": "https://futures.mexc.com/api/v1/private/user_pref/leverage_mode", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f72", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928126_3563037988_598908786_29859_14539_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "395D9D9B9F028CF69CC68264E9539CF1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.784529", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b29f8f", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928162_3563037988_598908815_27916_17075_52_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "94B7A69D17A421BEA3EB3802433E29F3" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.786528", + "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, cs-desk-user-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.1751497928.23b29fc3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=1, ak_p; desc=\"1751497928314_3563037988_598908867_146_17828_50_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "236252.1675" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.786528", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f7c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=5, ak_p; desc=\"1751497928131_3563037988_598908796_28220_13740_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1667" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.787527", + "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.1751497928.23b29f6f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=65, origin; dur=221, ak_p; desc=\"1751497928118_3563037988_598908783_28679_23489_50_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": "236252.1682" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.787527", + "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.1751497928.23b29f75", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "45", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=278, origin; dur=6, ak_p; desc=\"1751497928119_3563037988_598908789_28486_28621_50_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1684" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.787527", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f7b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=282, origin; dur=6, ak_p; desc=\"1751497928131_3563037988_598908795_29027_13108_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1664" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.787527", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f7e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=285, origin; dur=4, ak_p; desc=\"1751497928133_3563037988_598908798_29152_15214_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1666" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.787527", + "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.1751497928.23b29f74", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=63, origin; dur=230, ak_p; desc=\"1751497928120_3563037988_598908788_29470_25669_50_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": "236252.1683" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.787527", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f7f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "398", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=288, origin; dur=8, ak_p; desc=\"1751497928132_3563037988_598908799_29723_14997_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1668" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.788526", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f8a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=6, ak_p; desc=\"1751497928148_3563037988_598908810_29157_12269_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1663" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.788526", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f85", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=4, ak_p; desc=\"1751497928146_3563037988_598908805_29499_20620_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1665" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.788526", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f87", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=280, origin; dur=4, ak_p; desc=\"1751497928146_3563037988_598908807_29900_17354_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1670" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.788526", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f86", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=4, ak_p; desc=\"1751497928146_3563037988_598908806_29467_24492_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1669" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.789527", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f79", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=294, origin; dur=5, ak_p; desc=\"1751497928131_3563037988_598908793_30006_23181_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1660" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:10.789527", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29f7a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "94", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=305, origin; dur=4, ak_p; desc=\"1751497928131_3563037988_598908794_30978_20048_50_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1658" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:11.996007", + "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.1751497928.23b29fdf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "510", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=235, origin; dur=22, ak_p; desc=\"1751497928348_3563037988_598908895_25899_19168_54_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1701" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:11.996007", + "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.1751497927.23b29e86", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=274, origin; dur=7, ak_p; desc=\"1751497927407_3563037988_598908550_28215_18429_54_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1625" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:11.997019", + "url": "https://futures.mexc.com/api/v1/contract/detail?type=all", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497928.23b2a054", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928653_3563037988_598909012_26661_7937_53_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "BA4C2C336A43CDB20847FB6A73445630" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:11.997019", + "url": "https://futures.mexc.com/api/v1/contract/ticker", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497928.23b2a059", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928662_3563037988_598909017_26577_7166_47_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "6C1B8255CB2FDD0DC5216E5831A8A501" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:11.998018", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b29fc4", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "26751", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=314, origin; dur=42, ak_p; desc=\"1751497928315_3563037988_598908868_35716_18061_34_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1680" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:11.999018", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a024", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=280, origin; dur=6, ak_p; desc=\"1751497928509_3563037988_598908964_28635_12241_46_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1691" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:11.999018", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a026", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "398", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=278, origin; dur=8, ak_p; desc=\"1751497928510_3563037988_598908966_28631_11905_46_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1692" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.000017", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a027", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=280, origin; dur=7, ak_p; desc=\"1751497928510_3563037988_598908967_28755_11661_46_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1687" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.000017", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a028", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=286, origin; dur=3, ak_p; desc=\"1751497928510_3563037988_598908968_28930_11459_46_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1694" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.001021", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497928.23b2a080", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497928787_3563037988_598909056_27906_13643_42_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "49C2960C7F77D479551F8C845325DB4F" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.002022", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a025", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=280, origin; dur=6, ak_p; desc=\"1751497928511_3563037988_598908965_28851_17637_46_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1688" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.003023", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a02a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=287, origin; dur=5, ak_p; desc=\"1751497928510_3563037988_598908970_29353_18844_37_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1689" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.003023", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a02b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "60", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=277, origin; dur=4, ak_p; desc=\"1751497928522_3563037988_598908971_29427_19915_37_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1693" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.003023", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a029", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=304, origin; dur=12, ak_p; desc=\"1751497928510_3563037988_598908969_31755_11096_37_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1690" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.004015", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a02c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13157", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=297, origin; dur=9, ak_p; desc=\"1751497928523_3563037988_598908972_32050_21960_37_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1695" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.004015", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497928.23b2a055", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "61", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:08 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=284, origin; dur=4, ak_p; desc=\"1751497928660_3563037988_598909013_29145_19650_38_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1710" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.005020", + "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.1751497928.23b2a085", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=235, origin; dur=5, ak_p; desc=\"1751497928789_3563037988_598909061_24062_14710_38_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1719" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.008019", + "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.1751497928.23b2a082", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "502", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12:09 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=11, ak_p; desc=\"1751497928789_3563037988_598909058_24993_21248_51_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1716" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.009016", + "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, cs-desk-user-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.1751497928.23b2a0c1", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82707", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=70, origin; dur=0, ak_p; desc=\"1751497928956_3563037988_598909121_7036_12697_46_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": "236252.1709" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.009016", + "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.1751497928.23b2a084", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12:09 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=\"1751497928789_3563037988_598909060_28814_17489_37_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1718" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.009016", + "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.1751497928.23b2a086", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "45", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=275, origin; dur=7, ak_p; desc=\"1751497928789_3563037988_598909062_28331_20810_37_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1722" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.010015", + "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.1751497928.23b2a081", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "965", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=281, origin; dur=8, ak_p; desc=\"1751497928788_3563037988_598909057_28980_18005_37_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1714" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.010015", + "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.1751497928.23b2a083", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12:09 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=289, origin; dur=6, ak_p; desc=\"1751497928802_3563037988_598909059_30924_23866_30_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1717" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.102264", + "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, cs-desk-user-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.1751497928.23b2a0ba", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "138418", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=REVALIDATE, edge; dur=58, origin; dur=238, ak_p; desc=\"1751497928942_3563037988_598909114_29662_12741_38_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": "236252.1708" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.692712", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497929.23b2a0e5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=286, origin; dur=34, ak_p; desc=\"1751497929097_3563037988_598909157_32269_18643_36_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1715" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.693712", + "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": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497929.23b2a186", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497929638_3563037988_598909318_28981_8204_38_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D7573955363921E4E04E2DAFEADD4927" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.693712", + "url": "https://futures.mexc.com/api/v1/private/account/tiered_fee_rate/v2?symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497929.23b2a195", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:09 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497929683_3563037988_598909333_28161_12020_36_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "20C9EDD6E3FB19C9359B06FC7B9B9896" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.715714", + "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.1751497929.23b2a187", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1781", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:10 GMT", + "expires": "Wed, 02 Jul 2025 23:12:10 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=334, origin; dur=46, ak_p; desc=\"1751497929639_3563037988_598909319_38017_19827_44_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1740" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.715714", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497929.23b2a1e4", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9932", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:10 GMT", + "expires": "Wed, 02 Jul 2025 23:12:10 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"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=20, ak_p; desc=\"1751497929968_3563037988_598909412_29705_15667_49_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1741" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.715714", + "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.1751497930.23b2a1f5", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:10 GMT", + "expires": "Wed, 02 Jul 2025 23:12:10 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"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=14, ak_p; desc=\"1751497930015_3563037988_598909429_25517_22383_49_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1749" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.715714", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497929.23b2a1ed", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "280", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:10 GMT", + "expires": "Wed, 02 Jul 2025 23:12:10 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"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=8, ak_p; desc=\"1751497929989_3563037988_598909421_29639_21656_49_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1745" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.717717", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497930.23b2a28d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:10 GMT", + "expires": "Wed, 02 Jul 2025 23:12:10 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"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=4, ak_p; desc=\"1751497930498_3563037988_598909581_29424_12151_48_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1751" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.796240", + "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-allow-origin": "https://www.mexc.com", + "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 23:12:11 GMT", + "expires": "Wed, 02 Jul 2025 23:12:11 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=235, origin; dur=15, ak_p; desc=\"1751497930968_3563037966_730125220_25067_19245_27_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "74258cbb81abd9c5" + }, + "requestId": "236252.1763" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.796240", + "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.1751497930.23b2a316", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2460", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:11 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=285, origin; dur=32, ak_p; desc=\"1751497930897_3563037988_598909718_31710_20569_38_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1761" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.852248", + "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.1751497931.23b2a3ef", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "550", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:11 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=264, origin; dur=17, ak_p; desc=\"1751497931657_3563037988_598909935_28153_21023_34_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1768" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.868760", + "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.1751497931.23b2a463", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=47, origin; dur=226, ak_p; desc=\"1751497931990_3563037988_598910051_27368_21159_31_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": "236252.1771" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.868760", + "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.1751497931.23b2a464", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=67, origin; dur=234, ak_p; desc=\"1751497931990_3563037988_598910052_30166_21009_28_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": "236252.1772" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.868760", + "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.1751497932.23b2a4c3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=6, ak_p; desc=\"1751497932323_3563037988_598910147_694_19445_22_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.1773" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.868760", + "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.1751497932.23b2a47a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "220", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=241, origin; dur=11, ak_p; desc=\"1751497932078_3563037988_598910074_25228_20260_22_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1775" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.869761", + "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.1751497932.23b2a484", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=277, origin; dur=7, ak_p; desc=\"1751497932121_3563037988_598910084_28433_21886_22_0_219\";dur=1", + "traceparent": "00-b4f74bf864535f6a4d281f463d0f7c29-20e803e18d26af09-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1776" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.869761", + "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.1751497932.23b2a485", + "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 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=280, origin; dur=8, ak_p; desc=\"1751497932121_3563037988_598910085_28860_20983_20_0_219\";dur=1", + "traceparent": "00-0876be923c73ceacd7bdd2d6a5799704-24ebbd0dcd818040-00", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1777" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.873759", + "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.1751497932.23b2a561", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "548", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=1, ak_p; desc=\"1751497932918_3563037988_598910305_103_18828_16_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.1786" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.873759", + "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.1751497932.23b2a560", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "82", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:12 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=2, ak_p; desc=\"1751497932918_3563037988_598910304_263_18972_16_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "236252.1785" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.873759", + "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.1751497932.23b2a539", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "689", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:13 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=6, ak_p; desc=\"1751497932707_3563037988_598910265_28188_20844_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1784" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:12.876763", + "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.1751497933.23b2a637", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3498", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:14 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=276, origin; dur=275, ak_p; desc=\"1751497933602_3563037988_598910519_55091_19712_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1789" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:13.421089", + "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.1751497934.23b2a736", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1035", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:14 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=287, origin; dur=6, ak_p; desc=\"1751497934518_3563037988_598910774_29319_21448_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1796" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.191255", + "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.1751497938.23b2ac07", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_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=\"1751497938693_3563037988_598912007_5442_19351_9_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) (-) from parent" + }, + "requestId": "236252.1824" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.191255", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497938.23b2abe2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751497938630_3563037988_598911970_26011_11717_32_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "AA9B9ACD5136CE3FC7A8D177E06BE6ED" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.191255", + "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.1751497938.23b2abe4", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 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=12, ak_p; desc=\"1751497938630_3563037988_598911972_25426_18985_12_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1806" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.191255", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497938.23b2abe3", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751497938630_3563037988_598911971_28924_11702_29_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C3E14BF71BD4F6425BD799AC2F4C4AC5" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.192256", + "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.1751497938.23b2abec", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 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=246, origin; dur=9, ak_p; desc=\"1751497938648_3563037988_598911980_25694_19389_15_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1811" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.721775", + "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.1751497938.23b2abed", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 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=272, origin; dur=6, ak_p; desc=\"1751497938648_3563037988_598911981_27927_19158_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1812" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.721775", + "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.1751497938.23b2abeb", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "501", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 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=12, ak_p; desc=\"1751497938648_3563037988_598911979_30156_19675_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1810" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.722776", + "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.1751497938.23b2abf7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2460", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:18 GMT", + "expires": "Wed, 02 Jul 2025 23:12:18 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"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=41, ak_p; desc=\"1751497938671_3563037988_598911991_30005_20363_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1815" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.722776", + "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, cs-desk-user-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.1751497938.23b2ac4b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:19 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=70, origin; dur=0, ak_p; desc=\"1751497938925_3563037988_598912075_7112_18958_12_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": "236252.1808" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.722776", + "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.1751497938.23b2ac10", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 23:12:19 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=289, origin; dur=7, ak_p; desc=\"1751497938714_3563037988_598912016_29645_18988_11_0_219\";dur=1", + "traceparent": "00-0ba37fdf5e3c11337836a4e016397394-b0f31fe5824d6289-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1830" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.723777", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497938.23b2ac4e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:19 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=282, origin; dur=12, ak_p; desc=\"1751497938947_3563037988_598912078_29541_19834_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1809" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:17.723777", + "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.1751497938.23b2ac1e", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:19 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=619, origin; dur=10, ak_p; desc=\"1751497938762_3563037988_598912030_62995_14896_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1832" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:22.906173", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497943.23b2b29f", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:24 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497943701_3563037988_598913695_60674_7238_26_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "8C3E19BED37771ABAE061897A1D5B06D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:22.907175", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497944.23b2b339", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:24 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=238, origin; dur=5, ak_p; desc=\"1751497944325_3563037988_598913849_24273_17420_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1844" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:25.468814", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497946.23b2b60e", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:26 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497946671_3563037988_598914574_26697_8868_23_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "806B8E37ED4C303C90CD6A33E724C269" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:25.469811", + "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, cs-desk-user-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.1751497946.23b2b670", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:27 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=50, origin; dur=0, ak_p; desc=\"1751497946960_3563037988_598914672_5085_13994_11_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": "236252.1851" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:25.981149", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497947.23b2b707", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:27 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497947497_3563037988_598914823_23748_7507_21_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "70AA47812F43FA341656F40A3FF3C1B2" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:26.488186", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497947.23b2b74a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15112", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:28 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=MISS, edge; dur=238, origin; dur=16, ak_p; desc=\"1751497947759_3563037988_598914890_25384_16694_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1853" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:27.000715", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497948.23b2b7f0", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:28 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497948387_3563037988_598915056_24329_7692_20_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "8E72D6087E9DEDB7766F0334539B8615" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:27.524853", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497948.23b2b824", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:28 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=MISS, edge; dur=237, origin; dur=7, ak_p; desc=\"1751497948648_3563037988_598915108_24464_14585_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1854" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:27.527854", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497948.23b2b886", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:29 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497948997_3563037988_598915206_23836_10032_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B3447102B3209BD30CFF4E80D247328B" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:28.046098", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497949.23b2b8d6", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:29 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497949253_3563037988_598915286_24357_12378_19_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C3B29F3062320E02B925984ACCAE7A58" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:28.047098", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497949.23b2b8d9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "105", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:29 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=243, origin; dur=10, ak_p; desc=\"1751497949270_3563037988_598915289_25363_6506_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1858" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:28.047098", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497949.23b2b91c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13157", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:29 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=11, ak_p; desc=\"1751497949525_3563037988_598915356_24802_19569_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1860" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:33.642724", + "url": "https://futures.mexc.com/api/v1/private/position/order/calc_liquidate_price/v2", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497955.23b2bfca", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:35 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497955003_3563037988_598917066_25388_7788_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "63428C0B8A664D2216221FBAB2816683" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:34.146446", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497955.23b2c027", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:35 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=243, origin; dur=8, ak_p; desc=\"1751497955283_3563037988_598917159_25243_5866_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1869" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:34.663318", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497955.23b2c15a", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:36 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497955939_3563037988_598917466_24332_7262_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "A1A7309131B46F5A912C7A0BE2A8A5CE" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:34.664607", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497956.23b2c1ad", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:36 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497956193_3563037988_598917549_25000_12114_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "274A59D727AEFAC6C80209FE151E32A4" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:34.665208", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497956.23b2c1b8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:36 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=5, ak_p; desc=\"1751497956218_3563037988_598917560_24207_13122_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1870" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:35.266079", + "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.1751497956.23b2c226", + "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 23:12:36 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=290, origin; dur=8, ak_p; desc=\"1751497956581_3563037988_598917670_29880_20910_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1877" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:35.794418", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497956.23b2c214", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "100", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:37 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=553, origin; dur=72, ak_p; desc=\"1751497956500_3563037988_598917652_62570_11622_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1875" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:36.305803", + "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": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497957.23b2c350", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:37 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497957404_3563037988_598917968_23792_7374_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5E4BE16B85045768AAD312C00190EE74" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:36.305803", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497957.23b2c3ad", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9935", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:37 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=20, ak_p; desc=\"1751497957680_3563037988_598918061_25449_12392_18_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1882" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:41.894081", + "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.1751497962.23b2cb7a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:43 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=279, origin; dur=5, ak_p; desc=\"1751497962948_3563037988_598920058_28470_15982_24_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1893" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:44.031710", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497965.23b2cf72", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:45 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497965311_3563037988_598921074_23959_14494_20_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "533E7F47B45BD8912797694BC01DB5C1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:44.859650", + "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.1751497965.23b2d068", + "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 23:12:46 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=277, origin; dur=7, ak_p; desc=\"1751497965734_3563037988_598921320_28447_22361_25_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1899" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:46.032977", + "url": "https://futures.mexc.com/api/v1/private/order/create?mhash=c25cd71a3e959f32985f27ac29c5484e", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497965.23b2d00f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "102", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:47 GMT", + "expires": "Wed, 02 Jul 2025 23:12:47 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=1911, origin; dur=68, ak_p; desc=\"1751497965595_3563037988_598921231_197995_13471_24_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1897" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:46.564865", + "url": "https://futures.mexc.com/api/v1/private/position/list/history_positions?page_num=1&page_size=20", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497967.23b2d36d", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:48 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497967780_3563037988_598922093_23924_8396_20_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "A2D4D838AFCFA4C6811D39875960A826" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:46.565864", + "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": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497967.23b2d37c", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:48 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497967849_3563037988_598922108_23801_8173_20_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "51A26FCC18CE887A51E248AECA342AA1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:46.567864", + "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.1751497967.23b2d37d", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1809", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:48 GMT", + "expires": "Wed, 02 Jul 2025 23:12:48 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=42, ak_p; desc=\"1751497967849_3563037988_598922109_32077_19376_24_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1904" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:46.567864", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497968.23b2d3a9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1991", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:48 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=238, origin; dur=12, ak_p; desc=\"1751497968045_3563037988_598922153_25074_16961_25_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1903" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:46.567864", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497968.23b2d3c2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:48 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497968124_3563037988_598922178_23794_7286_20_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "8522CBEBA284F1CF0B5272DA48A4C858" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:47.077199", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497968.23b2d3c0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9921", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:48 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=236, origin; dur=18, ak_p; desc=\"1751497968117_3563037988_598922176_25477_13054_26_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1905" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:47.078199", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497968.23b2d427", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:48 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=236, origin; dur=5, ak_p; desc=\"1751497968411_3563037988_598922279_24129_12633_26_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1907" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:49.154460", + "url": "https://futures.mexc.com/api/v1/contract/detailV2?client=web", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497970.23b2d66a", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:50 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497970282_3563037988_598922858_26321_7730_22_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "AE72F15921C91B3AEC078E19DE782E2A" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:49.155459", + "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, cs-desk-user-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.1751497970.23b2d6ba", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131954", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:50 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=38, origin; dur=0, ak_p; desc=\"1751497970616_3563037988_598922938_3821_13381_28_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": "236252.1913" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:49.669157", + "url": "https://futures.mexc.com/api/v1/private/account/risk_limit", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497971.23b2d745", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:51 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497971101_3563037988_598923077_23855_8391_22_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "82070BCC193D9B47B49E37CD169F45B1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:50.175565", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497971.23b2d780", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "15099", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:51 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=19, ak_p; desc=\"1751497971366_3563037988_598923136_25429_13789_69_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1916" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:50.684506", + "url": "https://futures.mexc.com/api/v1/private/position/leverage?symbol=ETH_USDT", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497971.23b2d83f", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:52 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497971981_3563037988_598923327_23761_7621_21_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "4F8DB1205F94E95E203D614AC6668A48" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:51.200622", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497972.23b2d89a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "161", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:52 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=257, origin; dur=8, ak_p; desc=\"1751497972263_3563037988_598923418_26440_14853_59_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1919" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:51.712430", + "url": "https://futures.mexc.com/api/v1/private/account/contract/fee_rate?", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497972.23b2d997", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:53 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497972884_3563037988_598923671_24211_14767_23_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E189DC69B76698AD1AA21641AA806D60" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:51.713426", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497973.23b2d9fe", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "13157", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:53 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=10, ak_p; desc=\"1751497973172_3563037988_598923774_24690_23156_54_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1922" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.033823", + "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.1751497976.23b2dea7", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=56, origin; dur=0, ak_p; desc=\"1751497976339_3563037988_598924967_7405_21425_49_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": "236252.1942" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.033823", + "url": "https://futures.mexc.com/api/v1/contract/headerNew?lang=en-GB", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497976.23b2de92", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497976304_3563037988_598924946_24255_12587_24_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "1B6CF788262C0D95B4F5E6940B68C4F2" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.033823", + "url": "https://futures.mexc.com/api/v1/contract/systemSetting", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, mtoken, cs-desk-user-Authorization, cs-desk-customer-Authorization, cs-desk-user-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.1751497976.23b2de91", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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": "ak_p; desc=\"1751497976317_3563037988_598924945_26642_14107_22_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "68516734BC4E17E151F2C7644BA7A1D1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.035824", + "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.1751497976.23b2de96", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12:56 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=281, origin; dur=8, ak_p; desc=\"1751497976322_3563037988_598924950_29012_22233_42_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1926" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.035824", + "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.1751497976.23b2de9b", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12:56 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=8, ak_p; desc=\"1751497976324_3563037988_598924955_30237_20284_42_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1932" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.036835", + "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.1751497976.23b2de9a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12:56 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=296, origin; dur=9, ak_p; desc=\"1751497976324_3563037988_598924954_30774_20442_42_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1931" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.036835", + "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.1751497976.23b2de99", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "501", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12:56 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=292, origin; dur=14, ak_p; desc=\"1751497976323_3563037988_598924953_30816_20693_42_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1930" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.554933", + "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, cs-desk-user-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.1751497976.23b2df14", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "464", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=HIT, edge; dur=58, origin; dur=0, ak_p; desc=\"1751497976616_3563037988_598925076_5834_19450_38_0_219\";dur=1", + "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": "236252.1928" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.554933", + "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.1751497976.23b2de9c", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2462", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=278, origin; dur=38, ak_p; desc=\"1751497976326_3563037988_598924956_32169_28537_39_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1935" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.554933", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497976.23b2df01", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "3243", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:12:56 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=234, origin; dur=15, ak_p; desc=\"1751497976576_3563037988_598925057_24939_18377_37_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1929" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:55.555932", + "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.1751497976.23b2deae", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "72", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 02 Jul 2025 23:12:57 GMT", + "expires": "Wed, 02 Jul 2025 23:12: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=839, origin; dur=6, ak_p; desc=\"1751497976343_3563037988_598924974_85705_24769_34_0_219\";dur=1", + "traceparent": "00-a1eda53bdbfc66bd61f7cf48d1570af0-6db148f50ce795a7-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1948" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:59.101380", + "url": "https://futures.mexc.com/api/v1/contract/ping", + "status": 204, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.1751497980.23b2e4e1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:13:00 GMT", + "expires": "Wed, 02 Jul 2025 23:13: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": "ak_p; desc=\"1751497980288_3563037988_598926561_24109_7008_23_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "446EBB9110EA2E26E8678E6D9B7765CD" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:12:59.102383", + "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-allow-origin": "https://www.mexc.com", + "access-control-expose-headers": "x-cache, Content-Disposition", + "akamai-grn": "0.24a55fd4.1751497980.23b2e582", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "72", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:13:00 GMT", + "expires": "Wed, 02 Jul 2025 23:13: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=238, origin; dur=4, ak_p; desc=\"1751497980577_3563037988_598926722_24156_12940_33_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "236252.1953" + } + ], + "summary": { + "total_requests": 356, + "total_responses": 356, + "capture_session": "20250703_021049" + } +} \ No newline at end of file diff --git a/tests/test_mexc_futures_webclient.py b/tests/test_mexc_futures_webclient.py index 6317ed7..93e322a 100644 --- a/tests/test_mexc_futures_webclient.py +++ b/tests/test_mexc_futures_webclient.py @@ -82,7 +82,10 @@ def test_basic_connection(): logger.warning("Extracted cookies may be incomplete") # Initialize the web client - client = MEXCFuturesWebClient(session_cookies=cookies) + client = MEXCFuturesWebClient(api_key='', api_secret='', user_id='', base_url='https://www.mexc.com', headless=True) + # Load cookies into the client's session + for name, value in cookies.items(): + client.session.cookies.set(name, value) # Update headers to include additional parameters from captured requests client.session.headers.update({ @@ -246,7 +249,10 @@ def main(): logger.error("No valid session available") return - client = MEXCFuturesWebClient(session_cookies=cookies) + client = MEXCFuturesWebClient(api_key='', api_secret='', user_id='', base_url='https://www.mexc.com', headless=True) + # Load cookies into the client's session + for name, value in cookies.items(): + client.session.cookies.set(name, value) if not client.is_authenticated: logger.error("Failed to authenticate with MEXC")