Discover/max.maicoin.com API
live

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).

Endpoints
10
Updated
4mo ago
Try it

No input parameters required.

api.parse.bot/scraper/1ace5ad6-2d1a-419f-9d98-87f8f071115d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1ace5ad6-2d1a-419f-9d98-87f8f071115d/get_usdt_twd_ticker' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 10 totalclick to expand

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.

Input

No input parameters required.

Response
{
  "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.

Common use cases
  • Display a live USDT/TWD rate widget by polling get_usdt_twd_ticker for last, buy, and sell prices.
  • Build a cross-market screener by comparing high, low, and vol across all pairs from get_all_tickers.
  • Render depth charts by consuming bids and asks arrays from get_order_book for a chosen market.
  • Back-test trading strategies using OHLCV data from get_candles with 1-minute to weekly periods.
  • Monitor exchange health by checking per-coin withdraw and deposit status from get_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_status from get_markets.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does MAX Exchange have an official public API?+
Yes. MAX Exchange publishes an official REST API documented at https://max.maicoin.com/documents/api_v2. It covers both public market data and authenticated trading endpoints.
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?+
Not currently. The API covers public market data: tickers, order books, trades, candles, markets, currencies, VIP fee tiers, and server time. Authenticated operations such as order management and wallet balances are not included. You can fork this API on Parse and revise it to add those endpoints.
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.
Page content last updated . Spec covers 10 endpoints from max.maicoin.com.
Related APIs in Crypto Web3See all →
cex.io API
Access real-time cryptocurrency market data from CEX.io, including live prices, tickers, order books, trade history, and OHLCV candles for spot trading pairs. Monitor market movements and analyze trading opportunities with comprehensive pricing and order depth information across supported cryptocurrencies.
wap.eastmoney.com API
Access real-time stock quotes, historical K-line charts at 1-minute intervals, and tick data for Chinese securities markets and beyond. Search specific securities, retrieve sector performance, view order books, and pull comprehensive stock lists to power your financial analysis and trading applications.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
money.tmx.com API
money.tmx.com API
kraken.com API
Get live Kraken exchange market data including supported assets, trading pairs metadata, tickers, OHLCV candlesticks, and bid/ask spread history.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.
feed.bithumb.com API
Access real-time cryptocurrency market data from Bithumb Korea, including ticker prices in KRW and BTC, order books, transaction history, and candlestick charts. Stay informed with the latest notices, press releases, and trend reports directly from the exchange.