Account Endpoints
user info
GET /api/v1/info HTTP/1.1
Host: api-v1.1dex.com
Authorization: YOUR_API_KEY
Accept: */*
user info
{
"data": {
"eos_account": "text",
"parent_eos_account": "text",
"permission": "text"
}
}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"
}
]
}pool_id
0 buy 1 sell
0 market 1limit
status
history orders
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
}
]
}pool_id
0 buy 1 sell
open order list
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
}
]
}pool_id+order_id+side,ps:0-1-0 pool_id = 0,order_id = 1,side = buy
history order detail
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
}
}Client order ID
order
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
}
}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)
trade detail list
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"
}
]
}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)
transfer records with pagination
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": "2026-01-01T00:00:00.000Z"
}
]
}Last updated