From ab73f95a3f263805a83977e5ff408070f21c30a8 Mon Sep 17 00:00:00 2001 From: Dobromir Popov Date: Thu, 3 Jul 2025 02:31:01 +0300 Subject: [PATCH] capturing capcha tokens --- core/mexc_webclient/auto_browser.py | 32 + core/mexc_webclient/mexc_futures_client.py | 30 +- docs/MEXC_CAPTCHA_HANDLING.md | 45 + mexc_captcha_tokens_20250703_022428.json | 12 + mexc_requests_20250703_022428.json | 8072 ++++++++++++++++++++ 5 files changed, 8184 insertions(+), 7 deletions(-) create mode 100644 docs/MEXC_CAPTCHA_HANDLING.md create mode 100644 mexc_captcha_tokens_20250703_022428.json create mode 100644 mexc_requests_20250703_022428.json diff --git a/core/mexc_webclient/auto_browser.py b/core/mexc_webclient/auto_browser.py index 1e08cd5..d8b5c31 100644 --- a/core/mexc_webclient/auto_browser.py +++ b/core/mexc_webclient/auto_browser.py @@ -438,6 +438,16 @@ class MEXCRequestInterceptor: if self.session_cookies: print(f" 🍪 Cookies: {self.cookies_file}") + # Extract and save CAPTCHA tokens from captured requests + captcha_tokens = self.extract_captcha_tokens() + if captcha_tokens: + captcha_file = f"mexc_captcha_tokens_{self.timestamp}.json" + with open(captcha_file, 'w') as f: + json.dump(captcha_tokens, f, indent=2) + logger.info(f"Saved CAPTCHA tokens to {captcha_file}") + else: + logger.warning("No CAPTCHA tokens found in captured requests") + except Exception as e: print(f"❌ Error saving data: {e}") @@ -487,6 +497,28 @@ class MEXCRequestInterceptor: if self.save_to_file and (self.captured_requests or self.captured_responses): self._save_all_data() logger.info("Final data save complete") + + def extract_captcha_tokens(self): + """Extract CAPTCHA tokens from captured requests""" + captcha_tokens = [] + for request in self.captured_requests: + if 'captcha-token' in request.get('headers', {}): + token = request['headers']['captcha-token'] + captcha_tokens.append({ + 'token': token, + 'url': request.get('url', ''), + 'timestamp': request.get('timestamp', '') + }) + elif 'captcha' in request.get('url', '').lower(): + response = request.get('response', {}) + if response and 'captcha-token' in response.get('headers', {}): + token = response['headers']['captcha-token'] + captcha_tokens.append({ + 'token': token, + 'url': request.get('url', ''), + 'timestamp': request.get('timestamp', '') + }) + return captcha_tokens def main(): """Main function to run the interceptor""" diff --git a/core/mexc_webclient/mexc_futures_client.py b/core/mexc_webclient/mexc_futures_client.py index a1a6ae8..f8c83fe 100644 --- a/core/mexc_webclient/mexc_futures_client.py +++ b/core/mexc_webclient/mexc_futures_client.py @@ -19,6 +19,8 @@ from typing import Dict, List, Optional, Any from datetime import datetime import uuid from urllib.parse import urlencode +import glob +import os logger = logging.getLogger(__name__) @@ -191,16 +193,30 @@ class MEXCFuturesWebClient: 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. + This method looks for the most recent mexc_captcha_tokens JSON file to retrieve a token. """ 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 "" + # Look for the most recent mexc_captcha_tokens file + captcha_files = glob.glob("mexc_captcha_tokens_*.json") + if not captcha_files: + logger.error("MEXC: No CAPTCHA token files found") + return "" + + # Sort files by timestamp (most recent first) + latest_file = max(captcha_files, key=os.path.getctime) + logger.info(f"MEXC: Using CAPTCHA token file {latest_file}") + + with open(latest_file, 'r') as f: + captcha_data = json.load(f) + + if captcha_data and isinstance(captcha_data, list) and len(captcha_data) > 0: + # Return the most recent token + return captcha_data[0].get('token', '') + else: + logger.error("MEXC: No valid CAPTCHA tokens found in file") + return "" except Exception as e: - logger.error(f"MEXC: Error extracting captcha token from browser: {str(e)}") + logger.error(f"MEXC: Error extracting captcha token from browser data: {str(e)}") return "" def generate_signature(self, method: str, path: str, params: Dict[str, Any], diff --git a/docs/MEXC_CAPTCHA_HANDLING.md b/docs/MEXC_CAPTCHA_HANDLING.md new file mode 100644 index 0000000..275da48 --- /dev/null +++ b/docs/MEXC_CAPTCHA_HANDLING.md @@ -0,0 +1,45 @@ +# MEXC CAPTCHA Handling Documentation + +## Overview +This document outlines the mechanism implemented in the `gogo2` trading dashboard project to handle CAPTCHA challenges encountered during automated trading on the MEXC platform. The goal is to enable seamless trading operations without manual intervention by capturing and integrating CAPTCHA tokens. + +## CAPTCHA Handling Mechanism + +### 1. Browser Automation with `MEXCBrowserAutomation` +- The `MEXCBrowserAutomation` class in `core/mexc_webclient/auto_browser.py` is responsible for launching a browser session using Selenium WebDriver. +- It navigates to the MEXC futures trading page and captures HTTP requests and responses, including those related to CAPTCHA challenges. +- When a CAPTCHA request is detected (e.g., requests to `gcaptcha4.geetest.com` or specific MEXC CAPTCHA endpoints), the relevant token is extracted from the request headers or response data. +- These tokens are saved to JSON files named `mexc_captcha_tokens_YYYYMMDD_HHMMSS.json` in the project root directory for later use. + +### 2. Integration with `MEXCFuturesWebClient` +- The `MEXCFuturesWebClient` class in `core/mexc_webclient/mexc_futures_client.py` is updated to handle CAPTCHA challenges during API requests. +- A `MEXCSessionManager` class manages session data, including cookies and CAPTCHA tokens, by reading the latest token from the saved JSON files. +- When a request fails due to a CAPTCHA challenge, the client retrieves the latest token and includes it in the request headers under `captcha-token`. + +### 3. Manual Testing and Data Capture +- The script `run_mexc_browser.py` provides an interactive way to test the `MEXCFuturesWebClient` and capture CAPTCHA tokens. +- Users can run this script to perform test trades, monitor requests, and save captured data, including tokens, to files. +- The captured tokens are used in subsequent API calls to authenticate trading actions like opening or closing positions. + +## Usage Instructions + +### Running Browser Automation +1. Execute `python run_mexc_browser.py` to start the browser automation. +2. Choose options like 'Perform test trade (manual)' to simulate trading actions and capture CAPTCHA tokens. +3. The script saves tokens to a JSON file, which can be used by `MEXCFuturesWebClient` for automated trading. + +### Automated Trading with CAPTCHA Tokens +- Ensure that the `MEXCFuturesWebClient` is configured to use the latest CAPTCHA token file. This is handled automatically by the `MEXCSessionManager` class, which looks for the most recent file matching the pattern `mexc_captcha_tokens_*.json`. +- If a CAPTCHA challenge is encountered during trading, the client will attempt to use the saved token to proceed with the request. + +## Limitations and Notes +- **Token Validity**: CAPTCHA tokens have a limited validity period. If the saved token is outdated, a new browser session may be required to capture fresh tokens. +- **Automation**: Currently, token capture requires manual initiation via `run_mexc_browser.py`. Future enhancements may include background automation for continuous token updates. +- **Windows Compatibility**: All scripts and file operations are designed to work on Windows systems, adhering to project rules for compatibility. + +## Troubleshooting +- If trades fail due to CAPTCHA issues, check if a recent token file exists and contains valid tokens. +- Run `run_mexc_browser.py` to capture new tokens if necessary. +- Verify that file paths and permissions are correct for reading/writing token files on Windows. + +For further assistance or to report issues, refer to the project's main documentation or contact the development team. \ No newline at end of file diff --git a/mexc_captcha_tokens_20250703_022428.json b/mexc_captcha_tokens_20250703_022428.json new file mode 100644 index 0000000..8b04bad --- /dev/null +++ b/mexc_captcha_tokens_20250703_022428.json @@ -0,0 +1,12 @@ +[ + { + "token": "geetest eyJsb3ROdW1iZXIiOiI4NWFhM2Q3YjJkYmE0Mjk3YTQwODY0YmFhODZiMzA5NyIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHV2k0N2JDa1hyREMwSktPWmwxX1dERkQwNWdSN1NkbFJ1Z2NDY0JmTGdLVlNBTEI0OUNrR200enZZcnZ3MUlkdnQ5RThRZURYQ2E0empLczdZMHByS3JEWV9SQW93S0d4OXltS0MxMlY0SHRzNFNYMUV1YnI1ZV9yUXZCcTZJZTZsNFVJMS1DTnc5RUhBaXRXOGU2TVZ6OFFqaGlUMndRM1F3eGxEWkpmZnF6M3VucUl5RTZXUnFSUEx1T0RQQUZkVlB3S3AzcWJTQ3JXcG5CTUFKOXFuXzV2UDlXNm1pR3FaRHZvSTY2cWRzcHlDWUMyWTV1RzJ0ZjZfRHRJaXhTTnhLWUU3cTlfcU1WR2ZJUzlHUXh6ZWg2Mkp2eG02SHZLdjFmXzJMa3FlcVkwRk94S2RxaVpyN2NkNjAxMHE5UlFJVDZLdmNZdU1Hcm04M2d4SnY1bXp4VkZCZWZFWXZfRjZGWFpnWXRMMmhWSDlQME42bHFXQkpCTUVicE1nRm0zbm1iZVBkaDYxeW12T0FUb2wyNlQ0Z2ZET2dFTVFhZTkxQlFNR2FVSFRSa2c3RGJIX2xMYXlBTHQ0TTdyYnpHSCIsInBhc3NUb2tlbiI6IjA0NmFkMGQ5ZjNiZGFmYzJhNDgwYzFiMjcyMmIzZDUzOTk5NTRmYWVlNTM1MTI1ZTQ1MjkzNzJjYWZjOGI5N2EiLCJnZW5UaW1lIjoiMTc1MTQ5ODY4NCJ9", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.openlong.ETH_USDT.300X", + "timestamp": "2025-07-03T02:24:51.150716" + }, + { + "token": "geetest eyJsb3ROdW1iZXIiOiI5ZWVlMDQ2YTg1MmQ0MTU3YTNiYjdhM2M5MzJiNzJiYSIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHZk9hVUhKRW1ZOS1FN0h3Q3NNV3hvbVZsNnIwZXRYZzIyWHBGdUVUdDdNS19Ud1J6NnotX2pCXzRkVDJqTnJRN0J3cExjQ25DNGZQUXQ5V040TWxrZ0NMU3p6MERNd09SeHJCZVRkVE5pSU5BdmdFRDZOMkU4a19XRmJ6SFZsYUtieElnM3dLSGVTMG9URU5DLUNaNElnMDJlS2x3UWFZY3liRnhKU2ZrWG1vekZNMDVJSHVDYUpwT0d2WXhhYS1YTWlDeGE0TnZlcVFqN2JwNk04Q09PSnNxNFlfa0pkX0Ruc2w0UW1memZCUTZseF9tenFCMnFweThxd3hKTFVYX0g3TGUyMXZ2bGtubG1KS0RSUEJtTWpUcGFiZ2F4M3Q1YzJmbHJhRjk2elhHQzVBdVVQY1FrbDIyOW0xSmlnMV83cXNfTjdpZFozd0hRcWZFZGxSYVRKQTR2U18yYnFlcGdLblJ3Y3oxaWtOOW1RaWNOSnpSNFNhdm1Pdi1BSzhwSEF0V2lkVjhrTkVYc3dGbUdSazFKQXBEX1hVUjlEdl9sNWJJNEFnbVJhcVlGdjhfRUNvN1g2cmt2UGZuOElTcCIsInBhc3NUb2tlbiI6IjRmZDFhZmU5NzI3MTk0ZGI3MDNlMDg2NWQ0ZDZjZTIyYzMwMzUyNzQ5NzVjMDIwNDFiNTY3Y2Y3MDdhYjM1OTMiLCJnZW5UaW1lIjoiMTc1MTQ5ODY5MiJ9", + "url": "https://www.mexc.com/ucgateway/captcha_api/captcha/robot/robot.future.closelong.ETH_USDT.300X", + "timestamp": "2025-07-03T02:24:57.885947" + } +] \ No newline at end of file diff --git a/mexc_requests_20250703_022428.json b/mexc_requests_20250703_022428.json new file mode 100644 index 0000000..2aeeb4b --- /dev/null +++ b/mexc_requests_20250703_022428.json @@ -0,0 +1,8072 @@ +{ + "requests": [ + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.647301", + "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": "637509AFA3A63AA8DDD158BB2BD8F155" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.648302", + "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": "234E0148D525612B9015247B5C15E77E" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.648302", + "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": "59D9EC906B40BBDAB0BEBD5872DD3515" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.648302", + "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": "254560.219" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.649303", + "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": "254560.220" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.649303", + "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": "254560.221" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.649303", + "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": "254560.222" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.650302", + "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": "254560.223" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.650302", + "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": "254560.224" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.652564", + "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": "188605dd-4d5a-499c-a32f-428fab6d5d4f-0004", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.319" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.652564", + "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": "D820E212CD7B6DDAAB0E57C6844D7BE9" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.655570", + "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": "B7F0C7AE9FB5171ADEA48EB0A4B95935" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.655570", + "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": "CCBEA37CC00FC7E9FF4ADB4265B914DB" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.656572", + "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": "32AE392CAEFDE206F143BE7525D4DEFC" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.656572", + "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": "5AA4908033589018ACA30537B925B901" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.656572", + "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": "669B18B5BE68B0EB5662280B0699B681" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.657569", + "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": "1AAC004691F3F6F0179E45B5F4A3DBD6" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.657569", + "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": "6DF29F75FBF9993BEE6A9360B43B0B3F" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.658567", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751498676694", + "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": "E36E20D926952EBBEA866F4DBD938133" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.658567", + "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": "5D30AD3993022E7C1C405DD0DFAC5EBA" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.659570", + "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": "6AE92A405A1277279CE77BD3602F2110" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.659570", + "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": "870EEB4365F0E4E9AD8FEE9345ED4153" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.659570", + "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": "0DB5F446BEDF2E417308FFC0D12E78E1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.661569", + "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": "36d0d757-ae51-436f-9a61-c1f02f239cd6-0006", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.338" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.661569", + "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": "7423656a-2b51-4194-a2f4-fd496a4deaf4-0007", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.339" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.661569", + "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": "46f747ea-5248-45c1-8fca-421b2cb09813-0008", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.340" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.662568", + "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": "f927fb1e-3ba0-43b1-8c60-3451b6ccace1-0009", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.341" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.663568", + "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": "4a65183e-e385-4e59-a9cb-6e012a9b6fa6-0010", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.342" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.663568", + "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": "AF96C0E68E1BDE38B32C3923D010A89B" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.663568", + "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": "84dee1a5-cbd3-4618-af3a-2fb6bb449e5e-0011", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.343" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.663568", + "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": "9aab13ed-ac9f-4a3a-962a-af16ae2ece80-0015", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.352" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.664568", + "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": "36f677f3-e192-42a5-a72a-90ebd2edb81a-0017", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.354" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.664568", + "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": "521ffde2-c971-47da-b935-a762228fddf0-0018", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.355" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.665569", + "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": "8faab4f7-475e-4a3b-9517-75cc31ef6708-0019", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.356" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.665569", + "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": "54b98996-e0a0-4262-b0d6-d1e6118d789e-0020", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.357" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.665569", + "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": "0144c109-54fb-46b3-bce5-891a6760c0a4-0022", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.359" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.666569", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751498676694", + "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": "2e6d54db-9ebd-415c-8282-3763b5287faa-0026", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.367" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.667567", + "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": "2873962f-b8cc-4030-9f56-adcaa1b18e38-0027", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.368" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.667567", + "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": "cce8220e-391e-4247-9505-7d6e4c5a2ab8-0028", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.369" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.668568", + "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": "702c878a-5967-409b-aa37-9f6894c5d5f9-0029", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.370" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.669075", + "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": "45100fb2-be8c-417d-9c21-5cc4c11ae11a-0030", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.371" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.669075", + "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": "d9b7ba11-c15e-4619-841e-e575a5c91e27-0031", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.372" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.670086", + "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": "5e9e84b7-05c2-4824-b02e-0127c0a47751-0039", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.385" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.673084", + "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": "7B6751205FC39039C4865E661A13B4B1" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.674087", + "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": "9FAA82869EED87EAE88FB1A711BCD940" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.674087", + "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": "f3be2ff0-96c8-463f-bbdf-3dd8837dbe11-0042", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.411" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.675083", + "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": "b377ba43-f20c-49bb-8130-307a89c012e9-0043", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.412" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.675083", + "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": "C8589B936B72EF8C6D86036F2234AD35" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.677084", + "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": "b09ff16b-6ef8-4932-ad01-4fd4a0bf8c3e-0044", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.414" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.681086", + "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": "a0cd994a-b521-443d-9140-1c4b8cccec86-0045", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.422" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.684084", + "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": "b7d287a5-2ca4-40bf-88f5-e177a8cda201-0047", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.424" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.684084", + "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": "6b0ebad6-630b-4532-93b4-ee2bf6a5ee7f-0048", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.425" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.685085", + "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": "9b55899c-8aad-4549-a7aa-1691576e7dc5-0049", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.426" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.686087", + "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": "f26f56a2-898d-420a-80c0-00cc8e3a1c1d-0050", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.427" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.686087", + "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": "261E913EB1A616CB5D687321A7F0AC2D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.687089", + "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": "91cf2a0b-6574-452f-8f40-684e20dc95fc-0052", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.429" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.693085", + "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": "5838fea6-a7f8-4fea-8ea6-f3731c2b3eeb-0055", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.456" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.693085", + "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": "619374A4F494CFAA1DF0690E4E68FB8D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.698082", + "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": "6db78367-6c76-4014-8ff4-cbcdee6f145c-0057", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.475" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.699084", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751498677&interval=Min15&start=1750598677", + "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": "556E8596C067BFEA7A70D497C6B48A10" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.700084", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751498677&interval=Min15&start=1750598677", + "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": "1b6014a9-3788-4ea0-9808-cf144ba76490-0059", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.477" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.703087", + "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": "6bd0aec2-81cf-4336-8706-4268096aaa2c-0062", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.481" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.703087", + "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": "e4d882cb-ab05-4748-8c4f-08186dd5e85c-0063", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.482" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.703087", + "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": "5ccf8c36-e250-4f5d-a751-deb1861d780b-0064", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.483" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.705086", + "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": "25f391f7-62f4-4163-826a-b77cb7008909-0067", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.486" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.705086", + "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": "E8206BCE241C2A7B6089E6E60CD40FD7" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.706083", + "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": "B78FD692DB6C7F4152174B284C6FC643" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.706083", + "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": "09ED3E5F7ED150508EF82BBF0AB34DBB" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.706083", + "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": "89E622E651E294B4264D434118EFCB60" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.706083", + "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": "20E5FFC53F09258C4D9FF3021880F26B" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.707083", + "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": "0A6408D78FF17298B1724D0D65FD5DA0" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.707083", + "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": "B895FC1631FE8215805AA68069580C66" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.707083", + "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": "d14f140d-7f3d-4599-ba0a-69c75db2c49b-0069", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.490" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.707083", + "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": "cb88d7b4-369b-441e-a595-0d3ba506e2fc-0070", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.491" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.707083", + "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": "0a924c1c-e78e-46f7-80f2-4f793c6698ae-0071", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.492" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.708084", + "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": "35768733-3d47-4649-a24a-813b347cdab5-0072", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.493" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.708084", + "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": "89bffadf-0587-4315-af7b-e6211dcf9824-0073", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.494" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.708084", + "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": "44b322fd-79bf-4690-8651-7c2511d83513-0074", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.495" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.708084", + "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": "563f62bd-f7ee-4aff-8b78-e1b26d6fe4d6-0075", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.496" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.709084", + "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": "2affdbfa-6d52-42a7-846e-4fdf17a6f1f5-0076", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.497" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.709084", + "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": "5DFD67E994604EF62D40B5E004E38A4B" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.710084", + "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": "9652fada-9170-4998-97f4-f8369f0457ce-0077", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.520" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.711083", + "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": "9945610744BA6982B11E7A69B54DB46F" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.711083", + "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": "f4860b2d-e71e-41dd-b8ff-8c11535b0af0-0078", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.521" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.711083", + "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": "34185df5-cde5-4445-94c4-cf46092c17a5-0079", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.522" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.712084", + "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": "3d83a40a-72b6-44c7-a138-f6a49996284e-0080", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.523" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.712084", + "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": "ac396ed2-45c5-4d1f-b21e-84fafbc28c34-0081", + "trochilus-uid": "" + }, + "postData": "", + "requestId": "254560.524" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.728084", + "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": "06D08B19C1950142804F3085CF77294D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.729084", + "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": "72d68957-b645-48cb-a1a4-5de367d829e6-0082", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.525" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.729084", + "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": "E2734457CB3FC74C2C3DB4B050293C1F" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.729084", + "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": "e11b4310-7c7d-408e-a59f-19948538debd-0083", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.526" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.730083", + "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": "89093e1c-3324-43ec-8e2d-857c1cd5bc6c-0084", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.527" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.739090", + "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": "a94b8fed-c85a-485f-a3b7-197259dd216a-0086", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.531" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.739090", + "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": "8a54c982-8ee3-4c72-9efb-3962dc2f06d7-0087", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.532" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.739090", + "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": "32543b92-e623-4fbb-91ac-f9c967e9f6f5-0088", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.533" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.741090", + "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": "2f2cae0a-afcd-4522-aed9-208228b98e56-0089", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.535" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.741090", + "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": "E553CF060A04FA47188E751B419C12C7" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.741090", + "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": "17b5aa5e-5dfe-4192-89b4-c97c4f660aa0-0090", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.536" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.742092", + "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": "7bd9f74e-79d1-4b0d-a301-576d1b99646b-0091", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.537" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.742092", + "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": "b85cdbc6-67c2-4789-ab5a-6ca603745756-0092", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.538" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.742092", + "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": "c0074b8d-a224-4056-b17b-5ee811851dd2-0093", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.539" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.743092", + "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": "4d649075-a23b-45e7-9eb7-3dd6f2ddfc81-0094", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.540" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.743092", + "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": "e46dec95-6b05-49d3-b606-c3dfd1291611-0095", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.541" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.743092", + "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": "fd13628b-4b25-4c29-9ccb-7aeb404bda16-0096", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.542" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.744093", + "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": "ba3f97df-7b9e-4a57-880b-37994a2f2ab2-0097", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.543" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.747092", + "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": "60422e53-254b-429b-ace2-26d7a7631e2d-0099", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.545" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.748093", + "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": "3e5218df-5af6-4797-8df1-43c9ed5fe3a4-0100", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.546" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.752606", + "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": "cbd09d4d-25b0-47ee-a84b-0a168a7935d6-0106", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.555" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.770607", + "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": "40C4EA5411A38EA17B4736C0C14ABD7C" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.771607", + "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": "B49A0E8B194D5703C765E4588E21B5AA" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.772609", + "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": "c3dc1f7e-2254-48f6-9bd5-0c7a81ae31e2-0112", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.561" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.772609", + "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": "4fc3c992-8495-46b2-a0fc-e7803de6a011-0113", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.562" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.773607", + "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": "1076f9b5-86e4-4cce-8411-ac403b9126f5-0114", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.563" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.793604", + "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": "C1E59570DA66E3922C85532F353CBF1A" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.793604", + "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": "0d1d6b14-f0d0-467e-814b-cc49e189a2d4-0117", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.567" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.794605", + "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": "511e7565-ce5f-47db-a3c4-5d943c65421b-0118", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.568" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.797606", + "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": "6dfae4fb-bdd1-4270-b858-26fbb22e5e3c-0119", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.579" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.797606", + "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": "F54F09982652971D01C56227B02A6BA5" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.798607", + "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": "D80CBA0A16A61AD0BEB821A408466903" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.800607", + "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": "5a11dce9-b4a8-40f9-afdc-d831dda32e4a-0120", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.581" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.801605", + "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": "8c4cb63e-6c90-4a6e-b746-bd1d03b53ff3-0121", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.582" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.801605", + "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": "72559655-c78d-4f89-acf0-f39c8086fc79-0122", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.583" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.802605", + "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": "2a43cea9-cb28-402a-9f72-52b830043555-0123", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.584" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.802605", + "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": "0a0278fd-0504-40e9-8c02-5a240bdf2c84-0124", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.585" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.826608", + "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": "c1191731-6d80-444f-aa31-be3538cbb44d-0125", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.586" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.827610", + "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": "970e4ee4-c1b5-4f06-9e95-cd92766fbfaa-0128", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.589" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.828605", + "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": "a1824ac2-ab8b-447d-840c-53af6f027472-0133", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.601" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.831605", + "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": "f1a3babc-27f1-4d1d-a965-71f71fbea71f-0135", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.605" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.832605", + "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": "61a0e57e-47d7-4008-967a-ee4d1634d2fc-0136", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.606" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.847611", + "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": "332c0704-ec20-4cb6-b7d9-e8505ab57211-0142", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.615" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.848611", + "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": "24ec34dd-c6a6-4c0a-83dc-6f51dbab0462-0146", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.621" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.849610", + "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": "9278827e-04c6-4cdf-98b3-8b38cbb26357-0147", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.625" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.849610", + "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": "1751498680", + "N-Uuid": "6b2153ac-c878-4962-b89c-fbd2ce0a6622", + "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": "180c538a323c81373725b28c2d742e55", + "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": "d90d6b7a-3fb5-4c35-9afc-8ca1bffb536b-0148", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.626" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.849610", + "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": "1751498680", + "N-Uuid": "a5e85c00-23ad-4e93-8313-6666b9b57f21", + "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": "75b55a1c7249fa43f7d4a3a3fc2b0e7a", + "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": "ad11cf9f-f908-453d-b637-2f4d83f72daa-0149", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.627" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.851116", + "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": "658d798d-efaa-4d45-b32b-a67f171922ed-0150", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.628" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.851116", + "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": "3f725dec-2327-4d0e-bb7d-76acef303f98-0151", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.629" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.851116", + "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": "a54270fd-f8f1-41de-b515-53d931000ed2-0152", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.630" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.853124", + "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": "27a41fc4-5f6f-4282-a861-3a42932ee9fe-0154", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.632" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.857124", + "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": "714afaf9-c172-48ff-8bf6-9025f27e2a6a-0157", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.636" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.857124", + "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": "fcfaa1f1-f9e2-445c-8cab-e2730bcb1b6c-0158", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.637" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.858124", + "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": "d2b99294-88af-4692-bca5-b522bfc547f0-0159", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.638" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.874124", + "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": "4ceba24a-285f-4c0e-b200-4e05b70ac6f8-0163", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.644" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.875124", + "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": "de4e09e0-02e2-482d-bdd0-9555614c08b7-0166", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.647" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:48.913122", + "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": "25fa9276-0494-4763-81e4-792cdfa7ef11-0173", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.656" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:49.056170", + "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": "944f42f8-8f57-4054-b021-b2993af72ca0-0180", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751498689634", + "x-mxc-sign": "09635df1f835d5f074dcca10ccf75a21" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"type\":5,\"positionMode\":1,\"longParam\":{\"vol\":1,\"leverage\":300,\"openType\":2},\"shortParam\":{\"vol\":1,\"leverage\":300,\"openType\":2}}", + "requestId": "254560.679" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:49.056170", + "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": "0B9BF1E2A74318A96B66444D608C1ECF" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.608498", + "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": "6c8f8353-ba03-49ea-b3f5-e2781f58b4b0-0185", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.688" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.608498", + "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": "3C4F33F8F59840B7DECB77A317C4B162" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.609503", + "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": "E9F9D9E83CC04C6859D4836452C6951E" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.610505", + "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": "b7b412ec-40f8-4b5d-80b4-c77bba5b8874-0187", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.690" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.610505", + "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": "09e97c7d-d234-469c-a807-561a132f3e2e-0188", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.691" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.610505", + "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": "df9696d4-c885-4cf2-96be-a753fc1dc2fe-0189", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.692" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.610505", + "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": "ecbaa18e-b6d7-4a8c-8c3e-1df0861088ab-0190", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.693" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.610505", + "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": "0d01c368-380b-4428-bc4b-47a4b9f738ee-0191", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.694" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.621505", + "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": "29a0d285-1988-4756-a3b9-c9493eadf4c4-0194", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.697" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.622505", + "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": "a86e7cea-2c58-405c-9053-103c56cf07e9-0201", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.704" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.635131", + "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": "1751498690", + "N-Uuid": "75484b16-8a2b-49c1-ad1b-6eafc5c026b5", + "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": "19a96b96157a261f6889f62a625dd1fc", + "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": "f2c00256-26e9-49e6-8ecc-13d1ee5698a0-0207", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.710" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.635131", + "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": "A2BF1DF5616E492B2E053DBD5606DE72" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:50.635131", + "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": "52c9b42e-c5e4-41ad-b2ec-d5f40f8e6b70-0208", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751498691598", + "x-mxc-sign": "06d7046db5b6beccffaf5b2597eb33d0" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":1,\"openType\":2,\"type\":\"5\",\"vol\":1,\"leverage\":300,\"marketCeiling\":false,\"priceProtect\":\"0\",\"p0\":\"OdGpCLCw/9SAQfq5Rgck2Er2XcTdftEF4N/lM57FrwR50+nbW1WqEwed7dx/RJvRG10u8ykgOTXwLrdabdYA1rcq3V5I3bdWjEL5NAe/XO54PFs6INmn3brJU+rQPlN+rm4iBTaUevzik3uflBosvOhP7AnNbGWRwNNlG4nbNX0PtT6foD7cMsAYAUROl6StXGKPeU5JN709wK8sgEBmL22AdiicJG6OY999n5tX8Vbjh/cnpNS2yJkcLBM6JaBFLQBkpD+w4Ti/IpXWuiOzGsVf2rHDTh6MDI7QaWVhEvCo8tx0eMHh4n/sHcOrEeGTzCbcb2ozMRc=\",\"k0\":\"LNOLI6++naQTR2Sv0kl7G/ogDz7C2FPJFH61dG3v039eDErdwoxoO2xz5X68BxpGD1FHT2yiP/X83E1Eu/jWWo9ZggkyamIpFNlYt4R2D8S9FCKVyCI1JdFs1+iY68L9WLNJI5nADfedox+8tlKjIjTC9cIG6yLlUL8BBvfWT5VdHzOAq+AEF2Zc2gvWHWMHeUV+XAT1N1FMjgvuLgQ667SisxZ8RE+nO+FsZrwOXBKzHWSy66Ikl9yYL8Ikw8g3GgF2wFBF+8gtaICAup8Sh2Z/+YwPoVGSyP32TJdgMytgl5iOOSgPpHNkPOXTPUnAk6hM/GEMDec++ZQICcQXkg==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"CCz21cTV430SBW3sxd28\",\"ts\":1751498690272,\"mhash\":\"c25cd71a3e959f32985f27ac29c5484e\"}", + "requestId": "254560.712" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:51.150716", + "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 eyJsb3ROdW1iZXIiOiI4NWFhM2Q3YjJkYmE0Mjk3YTQwODY0YmFhODZiMzA5NyIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHV2k0N2JDa1hyREMwSktPWmwxX1dERkQwNWdSN1NkbFJ1Z2NDY0JmTGdLVlNBTEI0OUNrR200enZZcnZ3MUlkdnQ5RThRZURYQ2E0empLczdZMHByS3JEWV9SQW93S0d4OXltS0MxMlY0SHRzNFNYMUV1YnI1ZV9yUXZCcTZJZTZsNFVJMS1DTnc5RUhBaXRXOGU2TVZ6OFFqaGlUMndRM1F3eGxEWkpmZnF6M3VucUl5RTZXUnFSUEx1T0RQQUZkVlB3S3AzcWJTQ3JXcG5CTUFKOXFuXzV2UDlXNm1pR3FaRHZvSTY2cWRzcHlDWUMyWTV1RzJ0ZjZfRHRJaXhTTnhLWUU3cTlfcU1WR2ZJUzlHUXh6ZWg2Mkp2eG02SHZLdjFmXzJMa3FlcVkwRk94S2RxaVpyN2NkNjAxMHE5UlFJVDZLdmNZdU1Hcm04M2d4SnY1bXp4VkZCZWZFWXZfRjZGWFpnWXRMMmhWSDlQME42bHFXQkpCTUVicE1nRm0zbm1iZVBkaDYxeW12T0FUb2wyNlQ0Z2ZET2dFTVFhZTkxQlFNR2FVSFRSa2c3RGJIX2xMYXlBTHQ0TTdyYnpHSCIsInBhc3NUb2tlbiI6IjA0NmFkMGQ5ZjNiZGFmYzJhNDgwYzFiMjcyMmIzZDUzOTk5NTRmYWVlNTM1MTI1ZTQ1MjkzNzJjYWZjOGI5N2EiLCJnZW5UaW1lIjoiMTc1MTQ5ODY4NCJ9", + "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": "1fbcd295-67fc-46dc-8e87-4ed7fa38ca11-0209", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.713" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:51.701879", + "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": "376a3553-5043-4333-a772-6193b554d618-0213", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.719" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:51.702878", + "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": "5E6C3508649934700819173A86EFD451" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:53.243869", + "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": "E6AC90E3EA22DB71BE4F8844EB60515D" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:53.243869", + "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": "1d438498-0820-4b24-83d0-61ac4284ba22-0217", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.724" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:57.340328", + "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": "fa168720-6bd8-4fba-b001-2656d9b520fd-0226", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.752" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:57.341326", + "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": "523218C08E4AFE0EC4524A2A8FD9A43C" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:57.341326", + "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": "BCB582EC4A992813C2B1FB694638F549" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:57.341326", + "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": "4188e0fb-4deb-413c-9f4c-bcb19c864d1a-0227", + "trochilus-uid": "34224692", + "x-mxc-nonce": "1751498698632", + "x-mxc-sign": "ae3a0b44d784275fa8e23fba78e69701" + }, + "postData": "{\"symbol\":\"ETH_USDT\",\"side\":4,\"openType\":2,\"leverage\":300,\"type\":5,\"vol\":1,\"priceProtect\":\"0\",\"p0\":\"p+ID748iwa9kOv45wr5TSeh/4fnZzb0KCMFzH5fbdR0wl73uuYqkOckyY0Y5A/hvcmTxju2OebOqBhPLqXewttaZH+GPD3NAn6JhHaTIAKV0oVsjYL18KDGQOYNNPYbrclzHdDQpJV6+IdgbVPcYJcG3nr60wnkB3ij9OoaLKbeet919JTFEwDjRqawHWg+63STEeZNW07YAqz//ctLV0p+ASzR5+OpP4T2EVwUN4fUX5K2s+jJwDxdtaHTvb6gNt9Kd6nRwAGdlBxYHyuvHcT6dQDFmQZdgI0ynJXQgPpfdMXAEl0BQXPkwrBLH39hJfSB5N7lwykw=\",\"k0\":\"DUiP9VHK7pJ7yOVRki2M5rPPWmi4IfWaNp/MW2VJa+cW1/OW7hEtEo1rhh1HiptStcA04YX26uBqSppQOJ8UgSe6/0cgQdOry0Txj+T7WRZBK2MyMHwlgQhz2kDoJUL2G+hXHrHX50F41bJATXbfbnnOFa70jESNVvA4YlHErlOp3gST41UM1pjZIsE9M91ggJhFdOzlrdHVtSXrjnZr51pHGfUZzi7hked3t9SQ3Du9KJPisvHEsw7TmK14Zo3rZDxG2pn9wXGi81zTxKjp7ClM7u/Gfb/M341fr+WpPW2jHWmzktzibG/Q21wxyj82/5RYI7PPeQjEeD11iZI87w==\",\"chash\":\"d6c64d28e362f314071b3f9d78ff7494d9cd7177ae0465e772d1840e9f7905d8\",\"mtoken\":\"CCz21cTV430SBW3sxd28\",\"ts\":1751498697246,\"mhash\":\"c25cd71a3e959f32985f27ac29c5484e\"}", + "requestId": "254560.754" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:57.885947", + "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 eyJsb3ROdW1iZXIiOiI5ZWVlMDQ2YTg1MmQ0MTU3YTNiYjdhM2M5MzJiNzJiYSIsImNhcHRjaGFPdXRwdXQiOiJaVkwzS3FWaWxnbEZjQWdXOENIQVgxMUVBLVVPUnE1aURQSldzcmlubDFqelBhRTNiUGlEc0VrVTJUR0xuUzRHZk9hVUhKRW1ZOS1FN0h3Q3NNV3hvbVZsNnIwZXRYZzIyWHBGdUVUdDdNS19Ud1J6NnotX2pCXzRkVDJqTnJRN0J3cExjQ25DNGZQUXQ5V040TWxrZ0NMU3p6MERNd09SeHJCZVRkVE5pSU5BdmdFRDZOMkU4a19XRmJ6SFZsYUtieElnM3dLSGVTMG9URU5DLUNaNElnMDJlS2x3UWFZY3liRnhKU2ZrWG1vekZNMDVJSHVDYUpwT0d2WXhhYS1YTWlDeGE0TnZlcVFqN2JwNk04Q09PSnNxNFlfa0pkX0Ruc2w0UW1memZCUTZseF9tenFCMnFweThxd3hKTFVYX0g3TGUyMXZ2bGtubG1KS0RSUEJtTWpUcGFiZ2F4M3Q1YzJmbHJhRjk2elhHQzVBdVVQY1FrbDIyOW0xSmlnMV83cXNfTjdpZFozd0hRcWZFZGxSYVRKQTR2U18yYnFlcGdLblJ3Y3oxaWtOOW1RaWNOSnpSNFNhdm1Pdi1BSzhwSEF0V2lkVjhrTkVYc3dGbUdSazFKQXBEX1hVUjlEdl9sNWJJNEFnbVJhcVlGdjhfRUNvN1g2cmt2UGZuOElTcCIsInBhc3NUb2tlbiI6IjRmZDFhZmU5NzI3MTk0ZGI3MDNlMDg2NWQ0ZDZjZTIyYzMwMzUyNzQ5NzVjMDIwNDFiNTY3Y2Y3MDdhYjM1OTMiLCJnZW5UaW1lIjoiMTc1MTQ5ODY5MiJ9", + "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": "6326c2d6-ffd1-461c-a45d-b47a96709667-0228", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.755" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:58.033473", + "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": "ff6536ef-cb62-493a-b9ce-68205b0a67a3-0231", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.758" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:58.666665", + "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": "C8025D9F7AE570704ADE266D266AE3A2" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:58.667663", + "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": "FD6209BDD61C1939AF0F10B0C6CCAB45" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:58.668663", + "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": "306569DECA3260A497DE30B95278467B" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:58.668663", + "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": "345df767-f070-4ebe-89c7-ac39cd407717-0233", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.760" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:58.669663", + "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": "e6a4100f-72e5-413c-b85f-15b9db7f3367-0234", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.761" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:58.669663", + "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": "d64a6dba-7268-43bc-8c1f-3e8b9a0c5a3e-0235", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.762" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:59.701940", + "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": "9af46692-6582-43fd-bb2c-d1e1919b4ec9-0237", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.765" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:24:59.701940", + "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": "F306E60D69E23D160C79A4BC44422B59" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:25:00.736973", + "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": "f93d057d-1875-46e6-8a46-abf355340f13-0239", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.768" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:25:00.737974", + "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": "B45D154E8B96C98DA781F9762D14A5BB" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:25:03.782904", + "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": "20bd59d9-9176-41ac-ade9-354815d545cc-0242", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.772" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:25:03.783903", + "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": "C561144E9110D7BEEFF174359FCD0F00" + }, + { + "type": "request", + "timestamp": "2025-07-03T02:25:11.496073", + "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": "c0e3df0e-cacc-4890-86e0-767b7dc65f8b-0248", + "trochilus-uid": "34224692" + }, + "postData": "", + "requestId": "254560.779" + } + ], + "responses": [ + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.650302", + "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.1fa55fd4.1751498677.2a26bb3a", + "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:24:37 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=HIT, edge; dur=40, origin; dur=0, ak_p; desc=\"1751498677724_3563037983_707181370_4252_7741_5_0_219\";dur=1", + "x-cache": "Miss from child, Hit from parent" + }, + "requestId": "254560.221" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.651563", + "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.1fa55fd4.1751498677.2a26bb39", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:37 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498677725_3563037983_707181369_24247_6713_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "59D9EC906B40BBDAB0BEBD5872DD3515" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.651563", + "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.1fa55fd4.1751498677.2a26bb37", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:37 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498677725_3563037983_707181367_25169_6794_5_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "637509AFA3A63AA8DDD158BB2BD8F155" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.651563", + "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.1fa55fd4.1751498677.2a26bb2f", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498677673_3563037983_707181359_32586_13799_5_32_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "234E0148D525612B9015247B5C15E77E" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.652564", + "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.1fa55fd4.1751498677.2a26bb38", + "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:24:37 GMT", + "expires": "Wed, 02 Jul 2025 23:24:37 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=42, origin; dur=220, ak_p; desc=\"1751498677724_3563037983_707181368_26326_7949_5_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "254560.219" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.652564", + "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.1fa55fd4.1751498677.2a26bb36", + "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:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=REVALIDATE, edge; dur=58, origin; dur=229, ak_p; desc=\"1751498677724_3563037983_707181366_28882_7782_5_0_219\";dur=1", + "x-cache": "Miss from child, Miss from parent" + }, + "requestId": "254560.220" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.653563", + "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.1fa55fd4.1751498677.2a26bbaa", + "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:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=240, origin; dur=11, ak_p; desc=\"1751498677977_3563037983_707181482_25117_8508_25_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.224" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.654569", + "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.1fa55fd4.1751498677.2a26bbb2", + "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:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=240, origin; dur=16, ak_p; desc=\"1751498677994_3563037983_707181490_25613_8328_23_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.222" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.655570", + "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.1fa55fd4.1751498678.2a26bbcd", + "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:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24:38 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=233, origin; dur=11, ak_p; desc=\"1751498678058_3563037983_707181517_24367_14349_20_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.223" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.658567", + "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.1fa55fd4.1751498678.2a26bc1b", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678228_3563037983_707181595_25972_8193_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D820E212CD7B6DDAAB0E57C6844D7BE9" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.671083", + "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.1fa55fd4.1751498678.2a26bca5", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678480_3563037983_707181733_24000_14461_19_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5AA4908033589018ACA30537B925B901" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.671083", + "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.1fa55fd4.1751498678.2a26bc9c", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678468_3563037983_707181724_26161_9359_19_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B7F0C7AE9FB5171ADEA48EB0A4B95935" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.672084", + "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.1fa55fd4.1751498678.2a26bca4", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678480_3563037983_707181732_25596_8710_19_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "32AE392CAEFDE206F143BE7525D4DEFC" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.676083", + "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.1fa55fd4.1751498678.2a26bca3", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678496_3563037983_707181731_28311_10419_15_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "CCBEA37CC00FC7E9FF4ADB4265B914DB" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.676083", + "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.1fa55fd4.1751498678.2a26bcb8", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678508_3563037983_707181752_26847_14846_15_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "1AAC004691F3F6F0179E45B5F4A3DBD6" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.676083", + "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.1fa55fd4.1751498678.2a26bcc1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678528_3563037983_707181761_25520_14012_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "6DF29F75FBF9993BEE6A9360B43B0B3F" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.677084", + "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.1fa55fd4.1751498678.2a26bce1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678569_3563037983_707181793_23783_11961_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "870EEB4365F0E4E9AD8FEE9345ED4153" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.678084", + "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.1fa55fd4.1751498678.2a26bcdf", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678569_3563037983_707181791_24656_12031_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5D30AD3993022E7C1C405DD0DFAC5EBA" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.679084", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751498676694", + "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.1fa55fd4.1751498678.2a26bcd6", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678550_3563037983_707181782_34127_15934_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E36E20D926952EBBEA866F4DBD938133" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.680085", + "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.1fa55fd4.1751498678.2a26bd4c", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498678775_3563037983_707181900_24025_15238_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "9FAA82869EED87EAE88FB1A711BCD940" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.681086", + "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.1fa55fd4.1751498678.2a26bd45", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498678761_3563037983_707181893_26536_9150_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "7B6751205FC39039C4865E661A13B4B1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.681086", + "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.1fa55fd4.1751498678.2a26bd5b", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498678799_3563037983_707181915_25940_7781_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C8589B936B72EF8C6D86036F2234AD35" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.682084", + "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.25a55fd4.1751498678.32f91a96", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=235, origin; dur=7, ak_p; desc=\"1751498678528_3563037989_855186070_25656_13087_15_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.357" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.682084", + "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.25a55fd4.1751498678.32f91a98", + "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:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=240, origin; dur=5, ak_p; desc=\"1751498678527_3563037989_855186072_25799_14261_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.319" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.682084", + "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.25a55fd4.1751498678.32f91a8c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "59", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=236, origin; dur=8, ak_p; desc=\"1751498678526_3563037989_855186060_25446_20735_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.355" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.688084", + "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.25a55fd4.1751498678.32f91a51", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=332, origin; dur=30, ak_p; desc=\"1751498678480_3563037989_855186001_36149_21427_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.342" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.688084", + "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.25a55fd4.1751498678.32f91a8a", + "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:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498678525_3563037989_855186058_31674_21505_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.352" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.688084", + "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.25a55fd4.1751498678.32f91ac5", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "190", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:38 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=285, origin; dur=24, ak_p; desc=\"1751498678556_3563037989_855186117_30960_22255_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.371" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.688084", + "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.1fa55fd4.1751498678.2a26bce0", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498678569_3563037983_707181792_61619_12006_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "6AE92A405A1277279CE77BD3602F2110" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.689083", + "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.1fa55fd4.1751498678.2a26bce2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498678569_3563037983_707181794_61833_11880_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0DB5F446BEDF2E417308FFC0D12E78E1" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.690087", + "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.25a55fd4.1751498678.32f91bdc", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=282, origin; dur=6, ak_p; desc=\"1751498678752_3563037989_855186396_28820_20883_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.341" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.691089", + "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.1fa55fd4.1751498678.2a26bd06", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498678610_3563037983_707181830_61347_8485_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "AF96C0E68E1BDE38B32C3923D010A89B" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.691089", + "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.25a55fd4.1751498678.32f91bf0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "129", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=80, origin; dur=224, ak_p; desc=\"1751498678766_3563037989_855186416_30473_13013_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": "254560.340" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.691089", + "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.25a55fd4.1751498678.32f91c46", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=6, ak_p; desc=\"1751498678813_3563037989_855186502_24033_18201_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.354" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.692082", + "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.25a55fd4.1751498678.32f91c48", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=267, origin; dur=7, ak_p; desc=\"1751498678813_3563037989_855186504_27436_18156_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.359" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.692082", + "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.25a55fd4.1751498678.32f91c61", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=7, ak_p; desc=\"1751498678835_3563037989_855186529_24388_24187_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.370" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.692082", + "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.25a55fd4.1751498678.32f91bde", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82622", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=89, origin; dur=230, ak_p; desc=\"1751498678752_3563037989_855186398_31953_12272_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": "254560.338" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.692082", + "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.25a55fd4.1751498678.32f91c62", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=250, origin; dur=7, ak_p; desc=\"1751498678836_3563037989_855186530_25868_23989_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.368" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.693085", + "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.25a55fd4.1751498678.32f91c33", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=100, origin; dur=219, ak_p; desc=\"1751498678798_3563037989_855186483_31978_13455_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": "254560.339" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.693085", + "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.25a55fd4.1751498679.32f91e11", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82622", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751498679137_3563037989_855186961_50_12876_15_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "254560.424" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.694085", + "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.25a55fd4.1751498678.32f91a95", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=611, origin; dur=5, ak_p; desc=\"1751498678527_3563037989_855186069_62883_19747_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.356" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.694085", + "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.25a55fd4.1751498679.32f91e2e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "129", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751498679156_3563037989_855186990_243_14702_14_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "254560.426" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.694085", + "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.25a55fd4.1751498679.32f91e4d", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751498679177_3563037989_855187021_2371_13887_18_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "254560.425" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.694085", + "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.25a55fd4.1751498679.32f91db0", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=121, origin; dur=0, ak_p; desc=\"1751498679065_3563037989_855186864_12243_15900_16_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "254560.411" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.695085", + "url": "https://futures.mexc.com/api/v1/private/account/contract/zero_fee_rate/pop?timestamp=1751498676694", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.25a55fd4.1751498678.32f91cd6", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=291, origin; dur=6, ak_p; desc=\"1751498678924_3563037989_855186646_29697_21447_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.367" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.697083", + "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.1fa55fd4.1751498679.2a26be18", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679146_3563037983_707182104_23882_6871_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "261E913EB1A616CB5D687321A7F0AC2D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.697083", + "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.25a55fd4.1751498679.32f91d93", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "52", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=282, origin; dur=11, ak_p; desc=\"1751498679042_3563037989_855186835_29383_19361_13_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.412" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.700084", + "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.25a55fd4.1751498679.32f91d61", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=284, origin; dur=47, ak_p; desc=\"1751498679011_3563037989_855186785_33185_23061_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.422" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.701083", + "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.1fa55fd4.1751498679.2a26be75", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679368_3563037983_707182197_23917_8248_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "619374A4F494CFAA1DF0690E4E68FB8D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.701083", + "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.25a55fd4.1751498679.32f91dd1", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=61, origin; dur=220, ak_p; desc=\"1751498679090_3563037989_855186897_28370_14528_11_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": "254560.414" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.701083", + "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.25a55fd4.1751498679.32f91e2f", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=246, origin; dur=5, ak_p; desc=\"1751498679157_3563037989_855186991_25350_19746_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.427" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.704086", + "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.25a55fd4.1751498679.32f91e70", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=262, origin; dur=6, ak_p; desc=\"1751498679208_3563037989_855187056_26836_23659_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.369" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.704086", + "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.25a55fd4.1751498679.32f91e71", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=295, origin; dur=7, ak_p; desc=\"1751498679208_3563037989_855187057_30329_19073_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.372" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.704086", + "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.25a55fd4.1751498679.32f91ebb", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "822", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=8, ak_p; desc=\"1751498679257_3563037989_855187131_28878_17518_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.385" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.711083", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751498677&interval=Min15&start=1750598677", + "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.1fa55fd4.1751498679.2a26bee3", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679601_3563037983_707182307_24956_8121_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "556E8596C067BFEA7A70D497C6B48A10" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.730083", + "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.1fa55fd4.1751498679.2a26bf60", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679808_3563037983_707182432_24225_8059_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E8206BCE241C2A7B6089E6E60CD40FD7" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.731083", + "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.1fa55fd4.1751498679.2a26bf61", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679802_3563037983_707182433_24070_9905_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B78FD692DB6C7F4152174B284C6FC643" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.732083", + "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.1fa55fd4.1751498679.2a26bf78", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679834_3563037983_707182456_23980_7847_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0A6408D78FF17298B1724D0D65FD5DA0" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.732083", + "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.1fa55fd4.1751498679.2a26bf7a", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679834_3563037983_707182458_24182_7841_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5DFD67E994604EF62D40B5E004E38A4B" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.733083", + "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.1fa55fd4.1751498679.2a26bf76", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679834_3563037983_707182454_24669_7906_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "89E622E651E294B4264D434118EFCB60" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.733083", + "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.1fa55fd4.1751498679.2a26bf77", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679835_3563037983_707182455_24561_8197_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "20E5FFC53F09258C4D9FF3021880F26B" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.733083", + "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.1fa55fd4.1751498679.2a26bf79", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679834_3563037983_707182457_24361_13399_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B895FC1631FE8215805AA68069580C66" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.734084", + "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.25a55fd4.1751498679.32f92086", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "822", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751498679574_3563037989_855187590_24173_14675_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.429" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.735084", + "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.25a55fd4.1751498679.32f920c5", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "455", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=252, origin; dur=8, ak_p; desc=\"1751498679625_3563037989_855187653_26036_16380_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.456" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.735084", + "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.25a55fd4.1751498679.32f920f2", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "424", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=7, ak_p; desc=\"1751498679652_3563037989_855187698_24313_19348_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.481" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.735084", + "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.25a55fd4.1751498679.32f92105", + "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:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=262, origin; dur=6, ak_p; desc=\"1751498679676_3563037989_855187717_27117_20832_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.483" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.735084", + "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.25a55fd4.1751498679.32f92123", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:39 GMT", + "expires": "Wed, 02 Jul 2025 23:24:39 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=130, origin; dur=0, ak_p; desc=\"1751498679698_3563037989_855187747_15479_21800_11_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": "254560.486" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.735084", + "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.1fa55fd4.1751498679.2a26bf8c", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679879_3563037983_707182476_26404_12552_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "9945610744BA6982B11E7A69B54DB46F" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.736092", + "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.1fa55fd4.1751498679.2a26bf6a", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679814_3563037983_707182442_32921_16199_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "09ED3E5F7ED150508EF82BBF0AB34DBB" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.736092", + "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.1fa55fd4.1751498679.2a26bf96", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679914_3563037983_707182486_24333_12858_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "06D08B19C1950142804F3085CF77294D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.737090", + "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.25a55fd4.1751498679.32f91ffa", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "511", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=274, origin; dur=218, ak_p; desc=\"1751498679487_3563037989_855187450_49345_25614_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.475" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.746090", + "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.25a55fd4.1751498679.32f92239", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "394", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=5, ak_p; desc=\"1751498679899_3563037989_855188025_24118_19884_15_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.522" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.746090", + "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.25a55fd4.1751498679.32f92240", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=10, ak_p; desc=\"1751498679903_3563037989_855188032_24914_12748_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.523" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.746090", + "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.25a55fd4.1751498679.32f92241", + "cache-control": "max-age=0,must-revalidate", + "content-length": "183", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=271, origin; dur=8, ak_p; desc=\"1751498679902_3563037989_855188033_28429_25310_13_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.524" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.746090", + "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.25a55fd4.1751498679.32f92273", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "58", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=249, origin; dur=8, ak_p; desc=\"1751498679935_3563037989_855188083_25827_21323_13_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.525" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "url": "https://futures.mexc.com/api/v1/contract/kline/ETH_USDT?end=1751498677&interval=Min15&start=1750598677", + "status": 200, + "headers": { + "access-control-allow-credentials": "true", + "access-control-allow-headers": "ACCEPT, CONTENT-TYPE, X-MXC-SIGN, X-MXC-NONCE, LANGUAGE, VERSION, trochilus-trace-id, trochilus-uid, Authorization, NONCE, origin, timezone, device-id, platform, is-app, SIGNATURE, REQUEST-TIME, RECV-WINDOW, Pragma, Ucenter-Token, Ucenter-Via, x-web-sign, user-agent, timezone-login, captcha-token, siteSources, X-Device-Id, X-Client, x-language, expires, x-version, n-uuid, x-source, x-signature, n-timestamp, x-requested-with, responseType, 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.25a55fd4.1751498679.32f92238", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=290, origin; dur=12, ak_p; desc=\"1751498679899_3563037989_855188024_30277_18192_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.477" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "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.25a55fd4.1751498679.32f92218", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1649", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=286, origin; dur=75, ak_p; desc=\"1751498679874_3563037989_855187992_36099_22001_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.520" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "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.25a55fd4.1751498680.32f923a5", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=80, origin; dur=0, ak_p; desc=\"1751498680164_3563037989_855188389_8061_19616_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": "254560.521" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "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.25a55fd4.1751498680.32f92310", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=7, ak_p; desc=\"1751498680063_3563037989_855188240_24232_14779_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.491" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "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.25a55fd4.1751498680.32f9233e", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=9, ak_p; desc=\"1751498680088_3563037989_855188286_24452_14128_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.495" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "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.25a55fd4.1751498680.32f9230e", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=294, origin; dur=5, ak_p; desc=\"1751498680062_3563037989_855188238_29881_13634_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.490" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "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.1fa55fd4.1751498679.2a26bf9e", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498679929_3563037983_707182494_60788_13262_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E2734457CB3FC74C2C3DB4B050293C1F" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.749091", + "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.25a55fd4.1751498680.32f92353", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=11, ak_p; desc=\"1751498680106_3563037989_855188307_24870_15735_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.497" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.750598", + "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.25a55fd4.1751498680.32f92354", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=239, origin; dur=10, ak_p; desc=\"1751498680106_3563037989_855188308_25036_14383_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.493" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.750598", + "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.25a55fd4.1751498680.32f92358", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=264, origin; dur=12, ak_p; desc=\"1751498680108_3563037989_855188312_27919_19699_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.496" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.750598", + "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.25a55fd4.1751498680.32f92357", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=280, origin; dur=8, ak_p; desc=\"1751498680108_3563037989_855188311_29146_13366_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.494" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.751605", + "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.25a55fd4.1751498680.32f923c8", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=275, origin; dur=6, ak_p; desc=\"1751498680187_3563037989_855188424_28275_19463_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.492" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.751605", + "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.25a55fd4.1751498680.32f923c9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "93", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=299, origin; dur=6, ak_p; desc=\"1751498680187_3563037989_855188425_30598_19106_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.526" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.752606", + "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.1fa55fd4.1751498680.2a26c0d7", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498680400_3563037983_707182807_23748_11942_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E553CF060A04FA47188E751B419C12C7" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.753605", + "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.25a55fd4.1751498680.32f925b9", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751498680551_3563037989_855188921_111_20016_9_0_219\";dur=1", + "x-cache": "Hit from child" + }, + "requestId": "254560.545" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.753605", + "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.25a55fd4.1751498680.32f924cf", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "45", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=7, ak_p; desc=\"1751498680378_3563037989_855188687_24241_21225_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.533" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.753605", + "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.25a55fd4.1751498680.32f92501", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=5, ak_p; desc=\"1751498680410_3563037989_855188737_24781_12972_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.536" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.753605", + "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.25a55fd4.1751498680.32f92502", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=8, ak_p; desc=\"1751498680411_3563037989_855188738_25022_12317_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.537" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.754604", + "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.25a55fd4.1751498680.32f92503", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=6, ak_p; desc=\"1751498680411_3563037989_855188739_25085_12141_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.539" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.754604", + "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.25a55fd4.1751498680.32f924ce", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=56, origin; dur=234, ak_p; desc=\"1751498680378_3563037989_855188686_29087_20649_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-89.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "254560.532" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.754604", + "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.25a55fd4.1751498680.32f924b3", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=107, origin; dur=228, ak_p; desc=\"1751498680356_3563037989_855188659_33532_20862_7_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": "254560.531" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.754604", + "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.25a55fd4.1751498680.32f92504", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=279, origin; dur=10, ak_p; desc=\"1751498680411_3563037989_855188740_29667_12299_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.541" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.754604", + "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.25a55fd4.1751498680.32f92506", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=295, origin; dur=5, ak_p; desc=\"1751498680412_3563037989_855188742_30764_11611_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.543" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.754604", + "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.25a55fd4.1751498680.32f92511", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=286, origin; dur=7, ak_p; desc=\"1751498680428_3563037989_855188753_29400_17143_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.540" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.755605", + "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.25a55fd4.1751498680.32f9250f", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=287, origin; dur=7, ak_p; desc=\"1751498680428_3563037989_855188751_29469_22340_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.542" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.770607", + "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.25a55fd4.1751498680.32f92598", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=7, ak_p; desc=\"1751498680527_3563037989_855188888_24199_21344_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.538" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.774607", + "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.25a55fd4.1751498680.32f925ba", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "277", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=5, ak_p; desc=\"1751498680551_3563037989_855188922_24000_19944_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.546" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.792604", + "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.25a55fd4.1751498680.32f925d7", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=264, origin; dur=25, ak_p; desc=\"1751498680573_3563037989_855188951_28867_20183_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.527" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.794605", + "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.1fa55fd4.1751498680.2a26c1ca", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498680842_3563037983_707183050_26418_7141_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B49A0E8B194D5703C765E4588E21B5AA" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.795606", + "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.1fa55fd4.1751498680.2a26c1c9", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498680843_3563037983_707183049_26715_8685_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "40C4EA5411A38EA17B4736C0C14ABD7C" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.796604", + "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.25a55fd4.1751498680.32f9264d", + "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:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=276, origin; dur=11, ak_p; desc=\"1751498680659_3563037989_855189069_28698_26860_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.535" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.796604", + "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.25a55fd4.1751498680.32f9266a", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "511", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:40 GMT", + "expires": "Wed, 02 Jul 2025 23:24:40 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=23, ak_p; desc=\"1751498680688_3563037989_855189098_25955_22185_6_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.555" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.797606", + "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.1fa55fd4.1751498681.2a26c218", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498681000_3563037983_707183128_23782_8721_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C1E59570DA66E3922C85532F353CBF1A" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.798607", + "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.25a55fd4.1751498680.32f92774", + "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:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=294, origin; dur=5, ak_p; desc=\"1751498680895_3563037989_855189364_29976_19262_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.563" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.798607", + "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.25a55fd4.1751498681.32f928eb", + "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:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=42, origin; dur=0, ak_p; desc=\"1751498681138_3563037989_855189739_4323_14216_11_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "254560.561" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.828605", + "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.1fa55fd4.1751498681.2a26c298", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498681308_3563037983_707183256_25106_15058_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "F54F09982652971D01C56227B02A6BA5" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.829604", + "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.25a55fd4.1751498681.32f92813", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1810", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 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=37, ak_p; desc=\"1751498681001_3563037989_855189523_31345_21758_21_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.567" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.829604", + "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.1fa55fd4.1751498681.2a26c2bb", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498681375_3563037983_707183291_24156_14057_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "D80CBA0A16A61AD0BEB821A408466903" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.830604", + "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.25a55fd4.1751498681.32f928d6", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "82551", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=77, origin; dur=237, ak_p; desc=\"1751498681123_3563037989_855189718_31434_13034_17_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": "254560.562" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.830604", + "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.25a55fd4.1751498681.32f92992", + "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:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=18, ak_p; desc=\"1751498681268_3563037989_855189906_25906_13124_17_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.568" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.832605", + "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.25a55fd4.1751498681.32f92a38", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "505", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=10, ak_p; desc=\"1751498681399_3563037989_855190072_24621_20022_16_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.583" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.832605", + "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.25a55fd4.1751498681.32f92a39", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 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=239, origin; dur=8, ak_p; desc=\"1751498681399_3563037989_855190073_24822_18920_16_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.584" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.832605", + "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.25a55fd4.1751498681.32f92a3a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=13, ak_p; desc=\"1751498681399_3563037989_855190074_24859_18711_16_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.585" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.832605", + "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.25a55fd4.1751498681.32f92a3c", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=6, ak_p; desc=\"1751498681401_3563037989_855190076_24384_15824_16_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.586" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.832605", + "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.25a55fd4.1751498681.32f92a3e", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "45", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=274, origin; dur=7, ak_p; desc=\"1751498681400_3563037989_855190078_28204_18286_14_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.589" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.832605", + "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.25a55fd4.1751498681.32f92a18", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "966", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=262, origin; dur=12, ak_p; desc=\"1751498681374_3563037989_855190040_27438_22580_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.581" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.832605", + "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:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 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=\"1751498681550_3563037967_282413567_27775_10020_4_31_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "669B18B5BE68B0EB5662280B0699B681" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.844613", + "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.25a55fd4.1751498681.32f92b63", + "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:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=8, ak_p; desc=\"1751498681579_3563037989_855190371_24278_22409_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.579" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.844613", + "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.25a55fd4.1751498681.32f92b78", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "232", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=248, origin; dur=17, ak_p; desc=\"1751498681603_3563037989_855190392_26502_23217_13_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.601" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.844613", + "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.25a55fd4.1751498681.32f92bb6", + "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:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=237, origin; dur=41, ak_p; desc=\"1751498681645_3563037989_855190454_27846_23477_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.582" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.844613", + "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.25a55fd4.1751498679.32f920f3", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:41 GMT", + "expires": "Wed, 02 Jul 2025 23:24:41 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=279, origin; dur=7, ak_p; desc=\"1751498679653_3563037989_855187699_28704_19191_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.482" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.845612", + "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.25a55fd4.1751498681.32f92c47", + "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:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=275, origin; dur=5, ak_p; desc=\"1751498681737_3563037989_855190599_28019_13924_19_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.605" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.845612", + "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.25a55fd4.1751498681.32f92c8a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "550", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751498681784_3563037989_855190666_24110_23907_18_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.606" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.852125", + "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.25a55fd4.1751498682.32f92f28", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2461", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=245, origin; dur=32, ak_p; desc=\"1751498682208_3563037989_855191336_27747_21770_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.615" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.852125", + "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:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 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=654, origin; dur=14, ak_p; desc=\"1751498681884_3563037966_730746220_66818_17671_5_33_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child", + "x-trace-id": "43c8a0fa50f03609" + }, + "requestId": "254560.343" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.853124", + "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.25a55fd4.1751498682.32f93091", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "673", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=6, ak_p; desc=\"1751498682456_3563037989_855191697_24069_23486_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.621" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.853124", + "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.25a55fd4.1751498682.32f930d0", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "220", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=238, origin; dur=11, ak_p; desc=\"1751498682500_3563037989_855191760_24915_21436_8_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.625" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.854124", + "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.25a55fd4.1751498682.32f930e5", + "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:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=6, ak_p; desc=\"1751498682524_3563037989_855191781_24216_20156_8_0_219\";dur=1", + "traceparent": "00-9bcff1f5f545c559f3f7762adefcd983-2ad0942b76b2dcb2-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.626" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.854124", + "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.25a55fd4.1751498682.32f930e6", + "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:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=8, ak_p; desc=\"1751498682524_3563037989_855191782_24514_20001_7_0_219\";dur=1", + "traceparent": "00-05321c42a505b7a6250a81ad04cc5746-a1e44b248906949b-00", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.627" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.854124", + "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.25a55fd4.1751498682.32f9310c", + "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:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=52, origin; dur=219, ak_p; desc=\"1751498682551_3563037989_855191820_27469_20882_7_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": "254560.629" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.854124", + "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.25a55fd4.1751498682.32f9310b", + "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:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=REVALIDATE, edge; dur=53, origin; dur=222, ak_p; desc=\"1751498682550_3563037989_855191819_27814_21364_7_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": "254560.628" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.855124", + "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.25a55fd4.1751498682.32f932ca", + "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:24:42 GMT", + "expires": "Wed, 02 Jul 2025 23:24:42 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=6, ak_p; desc=\"1751498682857_3563037989_855192266_550_25394_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "254560.630" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.858124", + "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.25a55fd4.1751498683.32f934a2", + "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:24:43 GMT", + "expires": "Wed, 02 Jul 2025 23:24:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=1, ak_p; desc=\"1751498683221_3563037989_855192738_97_19193_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "254560.637" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.858124", + "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.25a55fd4.1751498683.32f934a1", + "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:24:43 GMT", + "expires": "Wed, 02 Jul 2025 23:24:43 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=3, ak_p; desc=\"1751498683221_3563037989_855192737_304_19346_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Hit from child" + }, + "requestId": "254560.636" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.858124", + "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.25a55fd4.1751498682.32f9320e", + "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:24:43 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=239, origin; dur=267, ak_p; desc=\"1751498682737_3563037989_855192078_50602_22555_7_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.632" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.859124", + "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.25a55fd4.1751498683.32f936a2", + "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:24:43 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=235, origin; dur=6, ak_p; desc=\"1751498683626_3563037989_855193250_24097_20760_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.638" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.897123", + "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.25a55fd4.1751498684.32f93c46", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:44 GMT", + "expires": "Wed, 02 Jul 2025 23:24:44 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=79, origin; dur=0, ak_p; desc=\"1751498684697_3563037989_855194694_7984_20076_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": "254560.647" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.898122", + "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.25a55fd4.1751498684.32f93c41", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:44 GMT", + "expires": "Wed, 02 Jul 2025 23:24:44 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=9, ak_p; desc=\"1751498684696_3563037989_855194689_24502_22040_19_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.644" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:48.929126", + "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.25a55fd4.1751498686.32f9471f", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "30", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:47 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=234, origin; dur=6, ak_p; desc=\"1751498686901_3563037989_855197471_23989_17566_10_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.656" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:49.565173", + "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.1fa55fd4.1751498690.2a26d4d2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:50 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498690166_3563037983_707187922_24124_7896_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "0B9BF1E2A74318A96B66444D608C1ECF" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:49.565173", + "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.25a55fd4.1751498690.32f95949", + "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:24:50 GMT", + "expires": "Wed, 02 Jul 2025 23:24:50 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=291, origin; dur=8, ak_p; desc=\"1751498690425_3563037989_855202121_29914_6283_9_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.679" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.636130", + "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.25a55fd4.1751498692.32f961c9", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=HIT, edge; dur=52, origin; dur=0, ak_p; desc=\"1751498692078_3563037989_855204297_7433_22572_8_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "254560.704" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.636130", + "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.1fa55fd4.1751498692.2a26d86d", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498692055_3563037983_707188845_24342_13304_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E9F9D9E83CC04C6859D4836452C6951E" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.636130", + "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.1fa55fd4.1751498692.2a26d868", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498692040_3563037983_707188840_27169_13141_7_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "3C4F33F8F59840B7DECB77A317C4B162" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.637128", + "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.25a55fd4.1751498692.32f9619a", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=235, origin; dur=11, ak_p; desc=\"1751498692040_3563037989_855204250_24682_21137_23_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.688" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.637128", + "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.25a55fd4.1751498692.32f961a8", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "504", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=11, ak_p; desc=\"1751498692055_3563037989_855204264_24548_20368_23_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.692" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.637128", + "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.25a55fd4.1751498692.32f961a9", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "374", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "processed": "true", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=241, origin; dur=7, ak_p; desc=\"1751498692056_3563037989_855204265_24840_20212_23_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.693" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.637128", + "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.25a55fd4.1751498692.32f961aa", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "64", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24:52 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=264, origin; dur=5, ak_p; desc=\"1751498692056_3563037989_855204266_27001_19379_21_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.694" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.637128", + "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.25a55fd4.1751498692.32f961ab", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "2461", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=236, origin; dur=40, ak_p; desc=\"1751498692056_3563037989_855204267_27693_19867_17_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.697" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:50.637128", + "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.25a55fd4.1751498692.32f9634e", + "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:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=HIT, edge; dur=49, origin; dur=0, ak_p; desc=\"1751498692352_3563037989_855204686_5017_20284_12_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": "254560.690" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:51.178234", + "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.25a55fd4.1751498692.32f96328", + "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:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=237, origin; dur=15, ak_p; desc=\"1751498692323_3563037989_855204648_25286_20594_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.691" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:51.194747", + "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.25a55fd4.1751498692.32f961db", + "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:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=606, origin; dur=6, ak_p; desc=\"1751498692082_3563037989_855204315_63751_26407_13_0_219\";dur=1", + "traceparent": "00-628fe22235dbcd7947a8350ec39368b0-12d8f5cea32c168e-00", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.710" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:51.194747", + "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.1fa55fd4.1751498692.2a26d8ae", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498692130_3563037983_707188910_60794_12534_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "A2BF1DF5616E492B2E053DBD5606DE72" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:51.194747", + "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.25a55fd4.1751498692.32f9643f", + "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:24:52 GMT", + "expires": "Wed, 02 Jul 2025 23:24:52 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=8, ak_p; desc=\"1751498692540_3563037989_855204927_24188_20531_11_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.713" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:52.207197", + "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.1fa55fd4.1751498693.2a26db4f", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:53 GMT", + "expires": "Wed, 02 Jul 2025 23:24: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=\"1751498693459_3563037983_707189583_23625_8094_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "5E6C3508649934700819173A86EFD451" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:52.207197", + "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.25a55fd4.1751498693.32f96a8e", + "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:24:54 GMT", + "expires": "Wed, 02 Jul 2025 23:24:54 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=275, origin; dur=5, ak_p; desc=\"1751498693710_3563037989_855206542_28026_13089_16_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.719" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:53.242867", + "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.25a55fd4.1751498692.32f9656f", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "101", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:54 GMT", + "expires": "Wed, 02 Jul 2025 23:24:54 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=1954, origin; dur=72, ak_p; desc=\"1751498692759_3563037989_855205231_202581_11895_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.712" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:53.751019", + "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.1fa55fd4.1751498694.2a26df43", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:55 GMT", + "expires": "Wed, 02 Jul 2025 23:24:55 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498694934_3563037983_707190595_23705_9262_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "E6AC90E3EA22DB71BE4F8844EB60515D" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:53.752017", + "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.25a55fd4.1751498695.32f972b2", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9897", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:55 GMT", + "expires": "Wed, 02 Jul 2025 23:24:55 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=286, origin; dur=17, ak_p; desc=\"1751498695191_3563037989_855208626_30364_13781_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.724" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:57.883955", + "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.1fa55fd4.1751498699.2a26e9a2", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:59 GMT", + "expires": "Wed, 02 Jul 2025 23:24:59 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498699023_3563037983_707193250_26107_8016_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "523218C08E4AFE0EC4524A2A8FD9A43C" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:57.884947", + "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.25a55fd4.1751498699.32f9895b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "br", + "content-length": "131841", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:24:59 GMT", + "expires": "Wed, 02 Jul 2025 23:24:59 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=HIT, edge; dur=47, origin; dur=0, ak_p; desc=\"1751498699301_3563037989_855214427_4761_14018_9_0_219\";dur=1", + "x-cache": "Miss from child, TCP_HIT from a95-101-55-88.deploy.akamaitechnologies.com (AkamaiGHost/22.1.5-3117971c8e766d2067e9a32e654e7386) (-) from parent" + }, + "requestId": "254560.752" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:57.884947", + "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.1fa55fd4.1751498699.2a26e9bf", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:24:59 GMT", + "expires": "Wed, 02 Jul 2025 23:24:59 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "ak_p; desc=\"1751498699103_3563037983_707193279_24911_13597_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "BCB582EC4A992813C2B1FB694638F549" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:58.666665", + "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.25a55fd4.1751498699.32f98a7f", + "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:24:59 GMT", + "expires": "Wed, 02 Jul 2025 23:24:59 GMT", + "nel": "{\"report_to\": \"nel\", \"max_age\": 2592000, \"response_headers\":[\"Akami-Grn\"] }", + "pragma": "no-cache", + "report-to": "{\"group\": \"nel\",\"max_age\": 2592000, \"endpoints\": [{\"url\":\"https://nel-cf.gotoda.co/nel/report\"},{\"url\":\"https://nel-akm.gotoda.co/nel/report\"}]}", + "server-timing": "cdn-cache; desc=MISS, edge; dur=234, origin; dur=8, ak_p; desc=\"1751498699514_3563037989_855214719_24240_25591_16_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.755" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:58.667663", + "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.25a55fd4.1751498699.32f989d0", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "101", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:25:00 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=588, origin; dur=65, ak_p; desc=\"1751498699388_3563037989_855214544_65368_14365_15_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.754" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:58.670664", + "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.1fa55fd4.1751498700.2a26ec35", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:25:00 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=\"1751498700231_3563037983_707193909_25265_8045_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "FD6209BDD61C1939AF0F10B0C6CCAB45" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:59.191853", + "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.1fa55fd4.1751498699.2a26eb07", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:25:00 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=\"1751498699731_3563037983_707193607_86266_8363_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C8025D9F7AE570704ADE266D266AE3A2" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:59.192852", + "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.25a55fd4.1751498700.32f98e8b", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1782", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:25:00 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=234, origin; dur=41, ak_p; desc=\"1751498700288_3563037989_855215755_27542_22013_14_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.761" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:59.192852", + "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.25a55fd4.1751498700.32f98f8e", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "1946", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:25:00 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=287, origin; dur=41, ak_p; desc=\"1751498700500_3563037989_855216014_32830_13103_13_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.760" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:59.192852", + "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.25a55fd4.1751498700.32f99009", + "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:25:00 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=295, origin; dur=12, ak_p; desc=\"1751498700614_3563037989_855216137_30738_13306_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.758" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:59.700939", + "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.1fa55fd4.1751498700.2a26ec5a", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:25:01 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=\"1751498700288_3563037983_707193946_86259_8447_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "306569DECA3260A497DE30B95278467B" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:59.701940", + "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.25a55fd4.1751498701.32f992bf", + "cache-control": "max-age=0, no-cache, no-store", + "content-encoding": "gzip", + "content-length": "9870", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:25:01 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=299, origin; dur=18, ak_p; desc=\"1751498701169_3563037989_855216831_31716_14533_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.762" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:24:59.702941", + "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.1fa55fd4.1751498701.2a26ee14", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:25:01 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=\"1751498701276_3563037983_707194388_23972_9750_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "F306E60D69E23D160C79A4BC44422B59" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:25:00.209007", + "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.25a55fd4.1751498701.32f99493", + "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:25:01 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=276, origin; dur=6, ak_p; desc=\"1751498701537_3563037989_855217299_28188_12999_11_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.765" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:25:00.737974", + "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.1fa55fd4.1751498702.2a26efa1", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:25:02 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=\"1751498702196_3563037983_707194785_28987_14312_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "B45D154E8B96C98DA781F9762D14A5BB" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:25:01.242863", + "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.25a55fd4.1751498702.32f9999e", + "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:25:02 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=324, origin; dur=8, ak_p; desc=\"1751498702508_3563037989_855218590_33266_21413_12_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.768" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:25:04.288908", + "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.1fa55fd4.1751498705.2a26f578", + "cache-control": "max-age=0, no-cache, no-store", + "date": "Wed, 02 Jul 2025 23:25:05 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=\"1751498705451_3563037983_707196280_24844_8218_6_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "C561144E9110D7BEEFF174359FCD0F00" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:25:04.289910", + "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.25a55fd4.1751498705.32f9aa70", + "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:25:06 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=\"1751498705717_3563037989_855222896_27924_15530_10_0_219\";dur=1", + "vary": "Accept-Encoding", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.772" + }, + { + "type": "response", + "timestamp": "2025-07-03T02:25:12.005501", + "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.25a55fd4.1751498713.32f9d288", + "cache-control": "max-age=0, no-cache, no-store", + "content-length": "62", + "content-type": "application/json", + "date": "Wed, 02 Jul 2025 23:25:13 GMT", + "expires": "Wed, 02 Jul 2025 23:25: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=239, origin; dur=6, ak_p; desc=\"1751498713232_3563037989_855233160_24502_16156_9_0_219\";dur=1", + "x-cache": "NotCacheable from child" + }, + "requestId": "254560.779" + } + ], + "summary": { + "total_requests": 183, + "total_responses": 183, + "capture_session": "20250703_022428" + } +} \ No newline at end of file