API Documentation

Complete API interface documentation, including request parameters, response formats and code examples

1

/

API Authentication

MyAPI uses API Key and Secret for authentication. All API requests that require authentication must include API Key and signature in the request headers. Authentication Method Uses HMAC-SHA256 signa...
View Details →

2

GET /api/v1/coin/list

Get Coin List

Get a list of coins with pagination and search support. This is a public endpoint and does not require authentication....
View Details →
GET /api/v1/coin/detail

Get Coin Details

Get detailed information about a specific coin, including description, links, tags, etc. This is a public endpoint and does not require authentication....
View Details →
GET /api/v1/coin/popular

Get Popular Coins

Get a list of popular coins ranked by market capitalization. This is a public endpoint and does not require authentication....
View Details →

3

GET /api/v1/ticker

Get Real-time Ticker

Get real-time market data for a specific trading pair, including latest price, 24-hour price change, trading volume, etc. API authentication required....
View Details →
GET /api/v1/klines

Get Historical K-line Data

Get historical K-line (candlestick) data for a specific trading pair, supporting multiple time intervals. API authentication required....
View Details →

4

WebSocket wss://{DOMAIN}/ws

WebSocket Real-time Data Push

Get real-time market data push through WebSocket connection. Supports subscribing to multiple trading pairs with real-time updates. API authentication required. Connection Steps Establish a WebSoc...
View Details →

5

GET /api/v1/depth

Get Order Book Depth

Get order book depth data for a specific trading pair. This endpoint returns the current buy and sell orders (bids and asks) at various price levels. This is a public endpoint and does not require aut...
View Details →
GET /api/v1/trades

Get Recent Trades

Get recent trade history for a specific trading pair. This endpoint returns the most recent executed trades, including price, quantity, and timestamp. This is a public endpoint and does not require au...
View Details →

6

GET /api/v1/exchange/list

Get Exchange List

Get a list of all supported exchanges with their basic information and statistics. This endpoint returns exchange codes, names, and the number of trading pairs available on each exchange. This is a pu...
View Details →
GET /api/v1/exchange/detail

Get Exchange Details

Get detailed information about a specific exchange, including statistics such as the total number of trading pairs and active trading pairs. This is a public endpoint and does not require authenticati...
View Details →