Skip to content

πŸ”· Unofficial MEXC API SDK - Get your access to MEXC Futures & Spot APIs during maintenance.

License

Notifications You must be signed in to change notification settings

ApTyp4uK1337/mexc-futures-api-bypass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

License: Proprietary Private Code Paid Access Paid Access

PHP Python Node.js

πŸ”· Unofficial MEXC API SDK

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


πŸ”΄ Live Demo

Demo file: ./demo/app.js


πŸŽ– Features

  • ⚑ 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

πŸ’³ Pricing

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 Β»


❓ FAQ

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?

Can the bypass API fetch account info, open positions, and adjust leverage/margin?

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.

⏱️ Rate Limit Test

Demo file: ./demo/rate_limit_test.js


πŸš€ API initialization

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
});

πŸ’₯ Create Order Example

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
});

πŸ“– Available Methods

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/


β–Ά Live preview: placing and cancelling a futures order

mexc-futures-api-bypass.mp4

πŸ’Œ Contact me