Discover/Maicoin API
live

Maicoin APImax.maicoin.com

Access real-time tickers, order books, OHLCV candles, and trade history for all MAX Exchange (MaiCoin) trading pairs via a structured REST API.

Endpoint health
verified 4d ago
get_market_summary
get_currencies
get_vip_levels
get_usdt_twd_ticker
get_markets
10/10 passing latest checkself-healing
Endpoints
10
Updated
26d ago

What is the Maicoin API?

This API exposes 10 endpoints covering real-time market data from MAX Exchange (MaiCoin), Taiwan's largest TWD-denominated cryptocurrency exchange. Fetch live tickers for every active trading pair via get_all_tickers, retrieve depth data with get_order_book, pull OHLCV candlesticks across 12 time periods with get_candles, and inspect fee tiers with get_vip_levels — all returning structured JSON with no authentication required.

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.
Call it over HTTPgrab 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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace max-maicoin-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""MAX Exchange API — bounded, re-runnable walkthrough."""
from parse_apis.max_exchange_api import MaxExchange, CandlePeriod, MarketNotFound

client = MaxExchange()

# List all markets and inspect the first few
for market in client.markets.list(limit=3):
    print(market.id, market.name, market.base_unit, market.quote_unit)

# Construct a market by ID and fetch its order book
btc = client.market(id="btctwd")
order_book = btc.order_book.get(limit=5)
print("BTC/TWD spread:", order_book.bids[0], order_book.asks[0], "at", order_book.timestamp)

# Get recent trades for a market
for trade in btc.trades.list(limit=3):
    print(trade.id, trade.side, trade.price, trade.volume)

# Fetch OHLCV candles with a specific period
for candle in btc.candles.list(period=CandlePeriod.ONE_HOUR, limit=3):
    print(candle.timestamp, candle.open, candle.close, candle.volume)

# Typed error handling for an invalid market
try:
    bad = client.market(id="invalidxyz")
    bad.order_book.get()
except MarketNotFound as exc:
    print(f"Market not found: {exc.market_id}")

# Exchange metadata: currencies and VIP fee tiers
currency = client.currencies.list(limit=1).first()
if currency:
    print(currency.id, currency.precision, currency.m_wallet_supported)

vip = client.viplevels.list(limit=1).first()
if vip:
    print("Level", vip.level, "maker:", vip.maker_fee, "taker:", vip.taker_fee)

print("exercised: markets.list / market.order_book.get / market.trades.list / market.candles.list / currencies.list / viplevels.list")
All endpoints · 10 totalmissing one? ·

Retrieve real-time ticker data for the USDT/TWD trading pair. Returns bid/ask prices, 24h high/low/open, last trade price, and volume metrics. A convenience shortcut equivalent to fetching the usdttwd entry from get_all_tickers.

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": 1781168317,
      "buy": "31.682",
      "low": "31.682",
      "vol": "7064032.73",
      "high": "31.797",
      "last": "31.683",
      "open": "31.741",
      "sell": "31.683",
      "buy_vol": "40166.55",
      "sell_vol": "51868.22",
      "vol_in_btc": "112.262949807713166351",
      "vol_in_quote": "223171708.1002555569"
    },
    "status": "success"
  }
}

About the Maicoin API

Market Data Coverage

The API covers all active trading pairs listed on MAX Exchange. get_all_tickers returns a single response keyed by market ID (e.g. usdttwd, btctwd, ethusdt) where each entry includes buy, sell, last, open, high, low, vol, buy_vol, sell_vol, vol_in_btc, and vol_in_quote. For TWD/USDT specifically, get_usdt_twd_ticker provides the same fields as a dedicated shortcut. get_market_summary combines tickers with per-coin status flags (withdraw, deposit, trade as strings), useful for detecting coins that are temporarily suspended.

Order Books and Trade History

get_order_book accepts a market_id (obtain valid IDs from get_markets) and an optional limit parameter. It returns asks sorted by price ascending and bids sorted descending, each as arrays of [price, volume] string pairs, plus a Unix timestamp. get_trades returns recent public trades for a market, each trade including id, price, volume, funds, side (bid or ask), market, market_name, created_at, and created_at_in_ms — sorted most recent first.

Candles and Exchange Metadata

get_candles accepts market_id, a period in minutes (1, 5, 15, 30, 60, 120, 240, 360, 720, 1440, 4320, or 10080), and a limit. Each returned item is an array of [timestamp, open, high, low, close, volume]. get_markets lists every trading pair with base_unit, quote_unit, precision, market_status, and minimum order amounts. get_currencies lists all supported currencies with precision, sygna_supported, m_wallet_supported, and min_borrow_amount. get_vip_levels exposes the full fee schedule: level, maker_fee, taker_fee, minimum_trading_volume (30-day, in TWD), and minimum_staking_volume in MAX tokens.

Reliability & maintenanceVerified

The Maicoin API is a managed, monitored endpoint for max.maicoin.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when max.maicoin.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official max.maicoin.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
10/10 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track real-time TWD-denominated BTC and ETH prices using get_all_tickers for a Taiwan-focused crypto dashboard
  • Build an order book visualizer for any MAX Exchange pair using get_order_book with a configurable depth limit
  • Run technical analysis strategies by fetching OHLCV data from get_candles with periods from 1 minute to 1 week
  • Monitor coin deposit/withdrawal availability via the coins status flags in get_market_summary
  • Calculate trading fee estimates for different volume tiers using maker_fee and taker_fee from get_vip_levels
  • Synchronize client-side clocks against exchange time using get_server_timestamp before order placement logic
  • Filter tradeable pairs programmatically by market_status and minimum order amounts from get_markets
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 and WebSocket API documented at https://max.maicoin.com/documents/api_v2. The official API requires authentication for private endpoints (orders, account balances). This Parse API covers the public market data endpoints only.
What does get_market_summary return that get_all_tickers does not?+
get_market_summary includes a coins object alongside tickers. Each entry in coins contains the currency's name and string flags for withdraw, deposit, and trade availability — letting you check whether a specific coin is currently restricted on the exchange. The ticker fields in get_market_summary use volume instead of vol, so field names differ slightly from get_all_tickers.
Does get_candles support fetching historical candles from a specific start date?+
Not currently. get_candles returns the most recent candles up to the specified limit for a given period and market_id; there is no start_time or end_time parameter to paginate into older history. You can fork this API on Parse and revise it to add timestamp-based range filtering if the underlying source supports it.
Are authenticated endpoints like account balances or open orders covered?+
No authenticated or private endpoints are included. The API covers public market data: tickers, order books, trades, candles, markets, currencies, server time, and VIP fee tiers. Account-level data such as balances, open orders, and trade history for a specific user are not exposed. You can fork it on Parse and revise to add private-endpoint coverage.
How are prices and volumes represented in the order book and trade responses?+
All price and volume values in get_order_book and get_trades are returned as strings, not floats. This preserves decimal precision without floating-point rounding. Each order book level is a two-element string array [price, volume]; trade objects carry separate price, volume, and funds string fields.
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.