Skip to content

maicoin/max-exchange-api-go

Repository files navigation

License GoDoc Go Report Card

max-exchange-api-go

MAX (Maicoin Assets eXchange) Go SDK

Examples

See the examples directory.

Documentation for API Endpoints

Notes

Private APIs require authentication. Pass your API tokens by AuthToken() or WSAuthToken() before using them.

RESTful APIs

All URIs are relative to https://max-api.maicoin.com

Class Go Method HTTP request Description
Public Currencies GET /api/v2/currencies
Public Depth GET /api/v2/depth
Public K GET /api/v2/k
Public Markets GET /api/v2/markets
Public OrderBook GET /api/v2/order_book
Public Tickers GET /api/v2/tickers
Public Ticker GET /api/v2/tickers/{market}
Public Timestamp GET /api/v2/timestamp
Public Trades GET /api/v2/trades
Class Go Method HTTP request Description
Private Deposit GET /api/v2/deposit
Private DepositAddress GET /api/v2/deposit_address Deprecated
Private CreateDepositAddresses POST /api/v2/deposit_addresses create deposit addresses
Private DepositAddresses GET /api/v2/deposit_addresses where to deposit
Private Deposits GET /api/v2/deposits
Private Me GET /api/v2/members/me
Private Order GET /api/v2/order
Private Orders GET /api/v2/orders
Private MyTrades GET /api/v2/trades/my
Private Withdrawal GET /api/v2/withdrawal
Private Withdrawals GET /api/v2/withdrawals
Private CancelOrder POST /api/v2/order/delete
Private CancelOrders POST /api/v2/orders/clear
Private CreateOrder POST /api/v2/orders
Private CreateOrders POST /api/v2/orders/multi create multiple sell/buy orders

Websocket APIs (Beta)

Class Go Method Description
Public SubscribeTicker Subscribe the realtime price information
Public SubscribeOrderBook Subscribe the realtime changes on order books
Public SubscribeTrade Subscribe the realtime trades information
Class Go Method Description
Private SubscribeAccount Subscribe the accounts changes for an user

API Reference

See MAX RESTful API List and MAX Websocket API List (Beta).

Releases

No releases published

Packages

No packages published

Languages