This unofficial MEXC Futures API library bypasses current maintenance restrictions in the official endpoints, allowing full trading and account access even when some routes are marked "Under maintenance".
Note
The source code of the library is not distributed openly. You can get access by contacting me on Telegram: @aptyp4uk1337_bot
You can test the opening of a position yourself: https://mexc-bypass.xyz/
Demo file: ./demo/app.js
- Blazing fast
- No third-party requests
- Works on mainnet & testnet
- Multi-accounting and proxy support
- Compatible with any programming language
- Simple PHP, Python & Node.js library
- Free updates
Option | Price | Duration | Includes |
---|---|---|---|
π Subscription | $30 | 30 days | Full access to all methods + updates |
πΎ Source Code | $125 | Lifetime (one-time) | Full source, no limits, no expiration |
Does it fully support placing, cancelling, and tracking all types of futures orders?
- Yes, including market, limit, stop-limit, and trigger orders.
How many orders can be sent per second, per minute, per day?
- See the results of the Rate Limit Test for 200 requests.
Can the bypass API fetch account info, open positions, and adjust leverage/margin?
- Yes. For more info, look at available methods section.
Is the library provided as open source or as compiled/obfuscated code?
- Currently, everything is open-sourced, nothing is obfuscated.
Can the library be used with multiple accounts, or is the authentication tied to a single one?
- No limitation on number of accounts.
Does it use anything third-party to make those requests?
- No.
Will I get a risk control ban for using the library?
- In my experience - no. For more information on risk control, see here π‘οΈ Risk Control on MEXC.
Demo file: ./demo/rate_limit_test.js
import { MexcClient } from './MexcClient.js';
const client = new MexcClient({
apiKey: 'YOUR_API_KEY',
isTestnet: false,
proxy: 'socks5://user:pass@127.0.0.1:1080', // socks5://user:pass@host:port || http://user:pass@host:port
});
import { MexcClient } from './MexcClient.js';
const client = new MexcClient({ apiKey: 'YOUR_API_KEY', isTestnet: true });
const order = await client.createOrder({
symbol: 'BTC_USDT',
type: 5,
side: 1,
openType: 2,
vol: 15,
leverage: 25
});
The library supports 30+ endpoints including:
- Placing, modifying and cancelling orders (market, limit, trigger, stop-limit)
- Accessing wallet and asset data
- Managing open positions, leverage and margin
- Retrieving contract info and price feeds
π Full method documentation is available in /docs/methods/