Account Endpoints
Get user balances
GET /api/v1/balances HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
user balances
{
"data": [
{
"balance": "text",
"coin": "text",
"locked": "text",
"locks": [
{
"balance": "text",
"pool_id": 1,
"pool_symbol": "text"
}
],
"usdt_price": "text"
}
]
}
Get history orders
pool_id
0 buy 1 sell
0 market 1limit
status
GET /api/v1/history-orders HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
history orders
{
"data": [
{
"avg_price": "text",
"base_coin_precision": 1,
"executed_amount": "text",
"filled_total": "text",
"history": true,
"id": "text",
"order_amount": "text",
"order_cid": "text",
"order_id": 1,
"order_price": "text",
"order_time": "text",
"order_total": "text",
"permission": "text",
"pool_base_coin": "text",
"pool_id": 1,
"pool_quote_coin": "text",
"pool_symbol": "text",
"quote_coin_precision": 1,
"side": 1,
"status": 1,
"trader": "text",
"type": 1,
"unread": true
}
]
}
Get open orders
pool_id
0 buy 1 sell
GET /api/v1/open-orders HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
open order list
{
"data": [
{
"avg_price": "text",
"base_coin_precision": 1,
"executed_amount": "text",
"id": "text",
"order_amount": "text",
"order_cid": "text",
"order_id": 1,
"order_price": "text",
"order_time": "text",
"order_total": "text",
"pool_base_coin": "text",
"pool_id": 1,
"pool_quote_coin": "text",
"pool_symbol": "text",
"quote_coin_precision": 1,
"side": 1,
"trader": "text",
"type": 1
}
]
}
Get history order detail
pool_id+order_id+side,ps:0-1-0 pool_id = 0,order_id = 1,side = buy
GET /api/v1/orders/{id} HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
history order detail
{
"data": {
"avg_price": "text",
"base_coin_precision": 1,
"executed_amount": "text",
"filled_total": "text",
"history": true,
"id": "text",
"order_amount": "text",
"order_cid": "text",
"order_id": 1,
"order_price": "text",
"order_time": "text",
"order_total": "text",
"permission": "text",
"pool_base_coin": "text",
"pool_id": 1,
"pool_quote_coin": "text",
"pool_symbol": "text",
"quote_coin_precision": 1,
"side": 1,
"status": 1,
"trader": "text",
"trades": [
{
"base_coin": "text",
"base_quantity": "text",
"global_seq": 1,
"maker": "text",
"maker_fee": "text",
"maker_order_cid": "text",
"maker_order_id": 1,
"maker_permission": "text",
"pool_id": 1,
"price": "text",
"quote_coin": "text",
"quote_quantity": "text",
"taker": "text",
"taker_fee": "text",
"taker_is_bid": true,
"taker_order_cid": "text",
"taker_order_id": 1,
"taker_permission": "text",
"timestamp": "text",
"tx_id": "text"
}
],
"type": 1,
"unread": true
}
}
Get order by client order ID (order_cid)
Client order ID
GET /api/v1/orders/client-id/{id} HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
order
{
"data": {
"avg_price": "text",
"base_coin_precision": 1,
"executed_amount": "text",
"filled_total": "text",
"history": true,
"id": "text",
"order_amount": "text",
"order_cid": "text",
"order_id": 1,
"order_price": "text",
"order_time": "text",
"order_total": "text",
"permission": "text",
"pool_base_coin": "text",
"pool_id": 1,
"pool_quote_coin": "text",
"pool_symbol": "text",
"quote_coin_precision": 1,
"side": 1,
"status": 1,
"trader": "text",
"type": 1,
"unread": true
}
}
Get recent trades for the authenticated subaccount
limit count (default 50, max 100)
filter trades after this timestamp (Unix timestamp in seconds)
filter trades before this timestamp (Unix timestamp in seconds)
filter trades with global sequence number greater than this value
sort direction for timestamp (asc or desc, default desc)
GET /api/v1/trades HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
trade detail list
{
"data": [
{
"base_coin": "text",
"base_quantity": "text",
"global_seq": 1,
"maker": "text",
"maker_fee": "text",
"maker_order_cid": "text",
"maker_order_id": 1,
"maker_permission": "text",
"pool_id": 1,
"price": "text",
"quote_coin": "text",
"quote_quantity": "text",
"taker": "text",
"taker_fee": "text",
"taker_is_bid": true,
"taker_order_cid": "text",
"taker_order_id": 1,
"taker_permission": "text",
"timestamp": "text",
"tx_id": "text"
}
]
}
Get transfer records between subaccount and main account
limit count
start time in Unix timestamp format (seconds since epoch)
end time in Unix timestamp format (seconds since epoch)
filter transfers with id greater than this value
sort direction for created_at (asc or desc, default desc)
GET /api/v1/transfers HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
transfer records with pagination
{
"data": [
{
"amount": "text",
"contract": "text",
"symbol": "text",
"from": "text",
"to": "text",
"tx_id": "text",
"side": "text",
"sid": "text",
"name": "text",
"created_at": "2025-06-27T08:36:26.517Z"
}
]
}
Last updated