### MAX Exchange Private RESTful API Endpoints Source: https://github.com/maicoin/max-exchange-api-go/blob/master/README.md Details private RESTful API endpoints for the MAX exchange, which require authentication using `AuthToken()`. These endpoints cover functionalities like deposits, withdrawals, account information, order creation, and order cancellation. All URIs are relative to `https://max-api.maicoin.com`. ```APIDOC Class: Private Go Method: Deposit HTTP Request: GET /api/v2/deposit Description: Class: Private Go Method: DepositAddress HTTP Request: GET /api/v2/deposit_address Description: Deprecated Class: Private Go Method: CreateDepositAddresses HTTP Request: POST /api/v2/deposit_addresses Description: create deposit addresses Class: Private Go Method: DepositAddresses HTTP Request: GET /api/v2/deposit_addresses Description: where to deposit Class: Private Go Method: Deposits HTTP Request: GET /api/v2/deposits Description: Class: Private Go Method: Me HTTP Request: GET /api/v2/members/me Description: Class: Private Go Method: Order HTTP Request: GET /api/v2/order Description: Class: Private Go Method: Orders HTTP Request: GET /api/v2/orders Description: Class: Private Go Method: MyTrades HTTP Request: GET /api/v2/trades/my Description: Class: Private Go Method: Withdrawal HTTP Request: GET /api/v2/withdrawal Description: Class: Private Go Method: Withdrawals HTTP Request: GET /api/v2/withdrawals Description: Class: Private Go Method: CancelOrder HTTP Request: POST /api/v2/order/delete Description: Class: Private Go Method: CancelOrders HTTP Request: POST /api/v2/orders/clear Description: Class: Private Go Method: CreateOrder HTTP Request: POST /api/v2/orders Description: Class: Private Go Method: CreateOrders HTTP Request: POST /api/v2/orders/multi Description: create multiple sell/buy orders ``` -------------------------------- ### MAX Exchange Public RESTful API Endpoints Source: https://github.com/maicoin/max-exchange-api-go/blob/master/README.md Details public RESTful API endpoints available on the MAX exchange. These endpoints provide market data such as currencies, depth, tickers, and trades, and do not require authentication. All URIs are relative to `https://max-api.maicoin.com`. ```APIDOC Class: Public Go Method: Currencies HTTP Request: GET /api/v2/currencies Description: Class: Public Go Method: Depth HTTP Request: GET /api/v2/depth Description: Class: Public Go Method: K HTTP Request: GET /api/v2/k Description: Class: Public Go Method: Markets HTTP Request: GET /api/v2/markets Description: Class: Public Go Method: OrderBook HTTP Request: GET /api/v2/order_book Description: Class: Public Go Method: Tickers HTTP Request: GET /api/v2/tickers Description: Class: Public Go Method: Ticker HTTP Request: GET /api/v2/tickers/{market} Description: Class: Public Go Method: Timestamp HTTP Request: GET /api/v2/timestamp Description: Class: Public Go Method: Trades HTTP Request: GET /api/v2/trades Description: ``` -------------------------------- ### MAX Exchange Public Websocket API Endpoints Source: https://github.com/maicoin/max-exchange-api-go/blob/master/README.md Details public Websocket API endpoints for the MAX exchange, allowing real-time subscriptions to market data such as ticker information, order book changes, and trade updates. ```APIDOC Class: Public Go Method: SubscribeTicker Description: Subscribe the realtime price information Class: Public Go Method: SubscribeOrderBook Description: Subscribe the realtime changes on order books Class: Public Go Method: SubscribeTrade Description: Subscribe the realtime trades information ``` -------------------------------- ### MAX Exchange Private Websocket API Endpoints Source: https://github.com/maicoin/max-exchange-api-go/blob/master/README.md Details private Websocket API endpoints for the MAX exchange, requiring authentication via `WSAuthToken()`. This endpoint allows users to subscribe to real-time account changes. ```APIDOC Class: Private Go Method: SubscribeAccount Description: Subscribe the accounts changes for an user ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.