max.maicoin.com APImax.maicoin.com ↗
Real-time tickers, order books, trade history, OHLCV candles, and VIP fee tiers for all trading pairs on MAX Exchange (max.maicoin.com).
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/1ace5ad6-2d1a-419f-9d98-87f8f071115d/get_usdt_twd_ticker' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve real-time exchange rate and ticker data for the USDT/TWD trading pair, including bid/ask prices, 24h high/low, last trade price, and volume.
No input parameters required.
{
"type": "object",
"fields": {
"at": "integer, Unix timestamp of the ticker snapshot",
"buy": "string, best bid price",
"low": "string, 24h lowest price",
"vol": "string, 24h base currency volume",
"high": "string, 24h highest price",
"last": "string, last trade price",
"open": "string, 24h opening price",
"sell": "string, best ask price",
"buy_vol": "string, volume at best bid",
"sell_vol": "string, volume at best ask",
"vol_in_btc": "string, 24h volume denominated in BTC",
"vol_in_quote": "string, 24h volume denominated in quote currency"
},
"sample": {
"data": {
"at": 1778855426,
"buy": "31.626",
"low": "31.522",
"vol": "8738038.37",
"high": "31.629",
"last": "31.627",
"open": "31.567",
"sell": "31.627",
"buy_vol": "26606.58",
"sell_vol": "21225.59",
"vol_in_btc": "110.421761389319378107",
"vol_in_quote": "275393542.7674832695"
},
"status": "success"
}
}About the max.maicoin.com API
The MAX Exchange API exposes 10 endpoints covering live market data for every trading pair listed on max.maicoin.com, Taiwan's regulated crypto exchange. get_all_tickers returns bid, ask, 24h high/low, last price, and volume for every market in a single call, while dedicated endpoints for order books, recent trades, OHLCV candles, and VIP fee tiers give a complete view of exchange activity without requiring an account.
Market Tickers and Summaries
get_usdt_twd_ticker returns a snapshot for the USDT/TWD pair specifically — fields include buy, sell, last, open, high, low, vol, buy_vol, and sell_vol alongside a Unix at timestamp. For broader coverage, get_all_tickers returns the same field set keyed by market ID (e.g. usdttwd, btctwd, ethusdt) with the addition of vol_in_btc and vol_in_quote. get_market_summary bundles tickers with a coins object that reports each currency's withdraw, deposit, and trade status — useful for checking whether a specific asset is currently active on the exchange.
Order Books, Trades, and Candles
get_order_book accepts a market_id and an optional limit parameter, returning bids and asks as arrays of [price, volume] string pairs with a timestamp. get_trades for a given market returns individual fills with price, volume, funds, side (bid or ask), created_at, and millisecond-precision created_at_in_ms. get_candles supports twelve period values ranging from 1 minute to 10080 minutes (one week), and each candle array element carries [timestamp, open, high, low, close, volume].
Markets, Currencies, and Fee Structure
get_markets enumerates every tradable pair with its base_unit, quote_unit, market_status, minimum order sizes in both units, and decimal precision values. get_currencies lists every supported asset with its precision, sygna_supported flag, and m_wallet_supported flag. get_vip_levels returns the full fee schedule: each tier exposes a level integer, maker_fee, taker_fee, minimum_staking_volume (in MAX tokens), and minimum_trading_volume (30-day TWD equivalent) — enough to model fee costs at any tier without hitting authenticated endpoints.
Utility
get_server_timestamp returns the exchange's current Unix timestamp in seconds. It is useful for clock-skew checks before placing time-sensitive requests against other endpoints.
- Display a live USDT/TWD rate widget by polling
get_usdt_twd_tickerforlast,buy, andsellprices. - Build a cross-market screener by comparing
high,low, andvolacross all pairs fromget_all_tickers. - Render depth charts by consuming
bidsandasksarrays fromget_order_bookfor a chosen market. - Back-test trading strategies using OHLCV data from
get_candleswith 1-minute to weekly periods. - Monitor exchange health by checking per-coin
withdrawanddepositstatus fromget_market_summary. - Calculate projected trading fees by mapping 30-day volume against tiers returned by
get_vip_levels. - Validate that a trading pair is active before routing orders by checking
market_statusfromget_markets.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does MAX Exchange have an official public API?+
What does `get_candles` return and which time periods are supported?+
get_candles returns an items array where each element is [timestamp, open, high, low, close, volume]. The period parameter accepts 12 values in minutes: 1, 5, 15, 30, 60, 120, 240, 360, 720, 1440, 4320, and 10080. The limit parameter controls how many candles are returned.Does the API cover authenticated endpoints like placing orders or checking account balances?+
How does `get_market_summary` differ from `get_all_tickers`?+
get_all_tickers returns only ticker fields (prices, volumes) keyed by market ID. get_market_summary includes those same tickers plus a coins object that reports each currency's deposit, withdrawal, and trading availability status — making it the right choice when you need to verify asset operability alongside price data.Is historical trade data accessible, or only recent trades?+
get_trades returns recent public fills for a market up to the count set by the limit parameter, sorted newest first. It does not expose paginated historical trade archives. You can fork this API on Parse and revise it to add pagination or a deeper history endpoint if MAX Exchange's public API supports one.