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
3mo 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 →
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
ens.vision API
Search and explore ENS domains across the marketplace, discover owner portfolios and activity feeds, and resolve names to addresses with complete text records. Get domain details, browse categories, view offers and recommendations, and track all marketplace listings in one place.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
studio.glassnode.com API
Access comprehensive on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. Search and analyze assets with historical chart data and market overview information to track crypto performance and trends.
crypto-fundraising.info API
Track cryptocurrency fundraising activity by searching projects and investors, viewing deal details, and staying updated with the latest crypto funding news and top active venture funds. Monitor major fundraising rounds, explore investor portfolios, and research emerging crypto projects all in one place.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.