This is an unofficial MEXC API SDK with support for futures and spot trading, as well as many other methods, providing full trading and account access, even if some routes are marked as "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/
- 6h free trial: @mexc_api_robot β
π Get Free Trial
Demo file: ./demo/app.js
- β‘ Blazing fast (200 - 400 ms)
- π No third-party requests
- π Works on mainnet & testnet
- π₯·π» Multi-accounting and proxy support (HTTP/HTTPS/SOCKS5)
- βοΈ Compatible with any programming language
- β¨οΈ Simple PHP, Python & Node.js library
- π Free updates & support included
- π TradingView Alerts Integration
| Option | Price | Duration | Includes |
|---|---|---|---|
| π§ͺ Trial | Free | 6 hours | Full access to all methods for the duration of testing |
| π Subscription | $45 | 30 days | Full access to all methods + updates |
| πΎ Source Code | $175 | Lifetime | Full source, no limits, no expiration, free updates |
| π₯ Multi-account interface | $275 | Lifetime | MEXC API SDK + Sources of interface + updates |
| πͺ Trading Mirror | $400 | Lifetime | MEXC API SDK + Sources of mirroring + updates |
π¬ Contact me on Telegram Β»
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?
- In the test version and subscription mode, all requests go through our server. When purchasing the source code, all requests go directly.
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:[email protected]: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 50+ endpoints including:
- Placing, modifying and canceling orders on spot and futures
- 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/


