|
Review
Spot markets
через современный торговый онлайн терминал through a modern online trading terminal Cryptocurrencies
криптовалютах в листинге на нашей бирже available in the listing on our exchange
Trading
USDT BTC S11 DOGE TRX LTC BOXCOIN ENRG FBC EFL CHESS ETH FREED BTG BTTC ALIAS MTBC PAK SONE GHOST FIRO BNB WAVES VQR
Earnings
Liquidity pools
ликвидности и наслаждайтесь пассивным доходом pools and earn a good income Liquidity shares market HOT
ликвидности с повышенной доходностью и максимальной дивесификацией shares for higher returns and maximum diversification Coin faucet
бонусы в криптовалюте каждый день in cryptocurrency every day Referral exchange
криптовалюту на прозрачной бирже рефералов referral exchange for cryptocurrency QTShares Token
QTShares и как с его помощью можно увеличить доходы на Qutrade QTShares and how it can help you earn more on Qutrade Referral program
и зарабатывайте на трехуровневой реферальной программе through our three-level referral program Search listings
и получайте 25% комиссии от стоимости листинга earn a 25% commission on the listing fee
Contests
Airdrops NEW
за выполнение простых действий completing simple actions Trade competitions NEW
оборот на спотовых рынках и получайте бонусы on the spot markets and receive bonuses
Listing
Listing vote
голосование — требует время для сбора голосов voting requires time to gather votes Listing request
проекта на бирже в течение от 1 до 7 дней project on the exchange from 1 to 7 days |
|||
|
API v1 documentation
Public market market_data
market_limit
market_depth
market_trades
Public pool pool_data
pool_limit
pool_history
Privat market new_order
market_add_liquidity
market_orders
market_liquidity
market_cancel_order
market_cancel_liquidity
market_user_trades
Privat pool pool_add
pool_trade
pool_cancel
pool_trades
Privat account balances
currencies
transactions
Method:
GET /api/v1/market_data/
This method allows obtaining market data on spot markets. Parameters:
Example of a PHP request:
$base_url = 'https://qutrade.io';
Response:
{
"result":"success",
"list":{
"btc_usdt":{
"price":,
"low":,
"high":,
"ask":,
"bid":,
"trend":,
"offer":,
"liquidity":,
"asset_1_volume":,
"asset_2_volume":,
"traders":,
"trades":,
"providers":,
"timestamp":
},
...
}
}
Description:
list -
price - low - high - ask - bid - trend - offer - liquidity - asset_1_volume - asset_2_volume - traders - trades - providers - timestamp - Method:
GET /api/v1/market_limit/
This method allows you to obtain trading limits on spot markets. Parameters:
Example of a PHP request:
$base_url = 'https://qutrade.io';
Response:
{
"result":"success",
"list":{
"btc_usdt":{
"step_price":1,
"decimal_price":0,
"min_price_buy":1,
"max_price_buy":101550,
"min_price_sell":33850,
"max_price_sell":10000000,
"min_amount":0.000001,
"step_amount":0.00000001,
"decimal_amount":8,
"min_volume":0.1,
"step_volume":0.00000001,
"decimal_volume":8,
"timestamp":1770804312
},
...
}
}
Description:
list -
step_price - decimal_price - min_price_buy - max_price_buy - min_price_sell - max_price_sell - min_amount - step_amount - decimal_amount - min_volume - step_volume - decimal_volume - timestamp - Method:
GET /api/v1/market_depth/
This method allows you to obtain the depth of orders in spot markets. Parameters:
Example of a PHP request:
$base_url = 'https://qutrade.io';
Response:
{
"result":"success",
"list":{
"btc_usdt":{
"asks": [
[67700,0.00007754],
[67800,0.000002],
[67900,0.0001],
...
],
"bids": [
[66778,0.00004146],
[66700,0.00002277],
[66647,0.00004174],
...
]
},
...
}
}
Description:
list -
asks - bids - Method:
GET /api/v1/market_trades/
This method allows you to obtain a history of recent trading transactions on spot markets. Parameters:
Example of a PHP request:
$base_url = 'https://qutrade.io';
Response:
{
"result":"success",
"list":[{
"pair":"s11_usdt",
"side":"buy",
"amount":1,
"price":0.1,
"timestamp":1697390831
},
...
]
}
Description:
result -
list - pair - side - amount - price - timestamp - Method:
POST /api/v1/new_order/
This method allows trading operations to be carried out on spot markets. Parameters:
pair (тикер рынка) обязательный
type (тип ордера) обязательный
side (направление ордера) обязательный
stop (цена активации) не обязательный
price (лимитная цена)
amount (лимитное/рыночное количество)
volume (лимитный/рыночный объем)
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/new_order/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['pair'] = 'btc_usdt';
$param['type'] = 'limit';
$param['side'] = 'buy';
$param['amount'] = 0.01;
$param['price'] = 25000;
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше выполнит лимитную покупку или создаст ордер на покупку 0.01 BTC по цене 25000 BTC/USDT. Response:
{
"result":"success",
"trade": {
"trade_id":1,
"pair":"btc_usdt",
"side":"buy",
"price":100000,
"amount":0.01,
"volume":1000,
"amount_fee":1,
"timestamp":1586000000
}
"trades":[{
"price":100000,
"amount":0.01,
"volume":1000,
"amount_fee":1
},
...
]
"order": {
"order_id":1,
"pair":"btc_usdt",
"side":"buy",
"price":100000,
"amount":0.01,
"volume":1000,
"timestamp":1586000000
}
}
Description:
trade - данные по проведенной сделке
trade_id - идентификатор сделки pair - тикер рынка side - тип сделки price - цена сделки amount - первичный объем сделки volume - вторичный объем сделки amount_fee - первичная комиссия (для side:buy) volume_fee - вторичная комиссия (для side:sell) timestamp - метка проведения сделки trades - данные по проведенным сделкам price - цена сделки amount - первичный объем сделки volume - вторичный объем сделки amount_fee - первичная комиссия (для side:buy) volume_fee - вторичная комиссия (для side:sell) order - данные по открытому ордеру order_id - идентификатор ордера pair - тикер рынка side - тип ордера price - цена ордера amount - первичный объем ордера volume - вторичный объем ордера timestamp - метка открытия ордера Method:
POST /api/v1/market_add_liquidity/
This method allows adding liquidity to liquidity pools. Parameters:
pair (тикер рынка) обязательный
amount (первичная ликвидность) обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/market_add_liquidity/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['pair'] = 'btc_usdt';
$param['amount'] = 0.01;
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше выполнит добавление ликвидности на 0.01 BTC в пул BTC/USDT. Response:
{
"result":"success",
"data": {
"share_id":2,
"pair":"btc_usd",
"asset_1_amount":0.01,
"asset_2_amount":0.1,
"price":10,
"timestamp":1586000000
}
}
Description:
data - данные по добавленной доле ликвидности
share_id - идентификатор доли ликвидности pair - тикер рынка asset_1_amount - добавленная первичная ликвидность asset_2_amount - добавленная вторичная ликвидность price - цена добавления ликвидности timestamp - метка добавления доли ликвидности Method:
POST /api/v1/market_orders/
This method allows you to receive open orders on spot markets. Parameters:
pair (тикер рынка) не обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/market_orders/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['pair'] = 'btc_usdt,eth_usdt';
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше вернет открытые ордера только по рынкам BTC/USDT и ETH/USDT. Response:
{
"result":"success",
"list":{
"btc_usdt":[
{
"order_id":1,
"type":"buy",
"amount":0.01,
"price":27000,
"timestamp":1696779593,
"amount_executed":0,
"trades_count":0,
"timestamp_update":1696779593
},
...
],
...
}
}
Description:
result - результат выполнения запроса
list - список рынков order_id - идентификатор ордера type - тип ордера amount - первичный объем ордера price - цена ордера timestamp - метка открытия ордера amount_executed - использованный объем ордера trades_count - количество сделок timestamp_update - метка обновления ордера Method:
POST /api/v1/market_liquidity/
This method allows you to get active liquidity on liquidity pools. Parameters:
pair (тикер рынка) не обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/market_liquidity/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['pair'] = 'btc_usdt,eth_usdt';
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше вернет открытые доли ликвидности только по рынкам BTC/USDT и ETH/USDT. Response:
{
"result":"success",
"list":{
"btc_usdt":[
{
"share_id":1,
"asset_1_amount":0.01,
"asset_2_amount":1,
"share":1,
"timestamp":1696779593
},
...
],
...
}
}
Description:
result - результат выполнения запроса
list - список рынков share_id - идентификатор ликвидности asset_1_amount - первичная ликвидность asset_2_amount - вторичная ликвидность share - доля ликвидности в процентах timestamp - метка добавления ликвидности Method:
POST /api/v1/market_cancel_order/
This method allows you to cancel open/pending orders on spot markets. Parameters:
order_id (идентификатор ордера) обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/market_cancel_order/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['order_id'] = 1;
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше выполнит отмену ордера с идентификатор ордера 1. Response:
{
"result":"success",
"list":[{
"order_id":1,
"pair":"btc_usdt",
"type":"limit",
"side":"buy",
"price":100000,
"requested_amount":0.1,
"unfilled_amount":0.1,
"filled_amount":0,
"filled_volume":0,
"timestamp_create":1697390831
"timestamp_update":1697390831
},
...
]
}
Description:
result - результат выполнения запроса
list - список отмененных ордеров order_id - идентификатор ордера pair - торговая пара type - тип ордера side - сторона ордера price - цена ордера requested_amount - запрошенный базовый объем ордера unfilled_amount - неиспользованный базовый объем ордера filled_amount - использованный базовый объем ордера filled_volume - использованный котируемый объем ордера timestamp_create - метка создания ордера timestamp_update - метка обновления ордера Method:
POST /api/v1/market_cancel_liquidity/
This method allows you to cancel liquidity shares on liquidity pools. Parameters:
share_id (идентификатор доли ликвидности) обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/market_cancel_liquidity/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['share_id'] = 12345;
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше выполнит отмену доли ликвидности с идентификатором доли ликвидности 12345. Response:
{
"result":"success"
}
Description:
result - результат выполнения запроса
Method:
POST /api/v1/market_user_trades/
This method allows you to obtain your own history of trading transactions on spot markets. Parameters:
pair (тикер рынка) не обязательный
from (начальная метка времени) не обязательный
to (конечная метка времени) не обязательный
limit (количество сделок) не обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/market_user_trades/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['pair'] = 'btc_usdt,eth_usdt';
$param['from'] = 1697300000;
$param['to'] = 1697320000;
$param['limit'] = 15;
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше вернет собственную историю последних 15 сделок только по рынкам BTC/USDT и ETH/USDT. Response:
{
"result":"success",
"list":[{
"trade_id":1,
"pair":"s11_usdt",
"side":"buy",
"amount":1,
"price":0.1,
"timestamp":1697390831
},
...
]
}
Description:
result - результат выполнения запроса
list - список сделок order_id - идентификатор сделки side - направление сделки amount - первичный объем сделки price - цена проведения сделки timestamp - метка времени Method:
POST /api/v1/balances/
This method allows you to obtain balances. Parameters:
ticker (тикер монеты) не обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Для вызова этого метода требуется цифровая подпись через
$base_url = 'https://qutrade.io';
$method = '/api/v1/balances/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['ticker'] = 'btc,eth';
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше вернет балансы только по монетм BTC и ETH. Response:
{
"result":"success",
"list":{
"btc":{
"spot":0.01,
"in_orders":0.01,
"in_pools":0.01
},
...
}
}
Description:
result - результат выполнения запроса
list - список монет spot - спотовый счет in_orders - средства в ордерах in_pools - средства в пулах Method:
POST /api/v1/currencies/
This method allows you to get data about coins. Parameters:
ticker (тикер монеты) не обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/currencies/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['ticker'] = 'btc,eth';
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше вернет данные только по монетам BTC и ETH. Response:
{
"result":"success",
"list":{
"btc":{
"name":"Bitcoin",
"site":"https://bitcoin.org",
"deposit_can":1,
"withdraw_can":1,
"chains":{
"btc":{
"deposit_can":1,
"deposit_min":1,
"deposit_fee_fixed":1,
"deposit_fee_percent":,
"deposit_confirmations":1,
"deposit_address_spot":,
"deposit_address_advertising":,
"withdraw_can":1,
"withdraw_min":1,
"withdraw_fee_fixed":1,
"withdraw_fee_percent":,
"explorer":"...",
"reserve":1
},
...
}
},
...
}
}
Description:
result - результат выполнения запроса
list - список монет deposit_can - статус депозитов withdraw_can - статус выводов chains - список сетей deposit_can - статус депозита deposit_min - минимальный депозит deposit_fee_fixed - фиксированная комиссия депозита deposit_fee_percent - процентная комиссия депозита deposit_confirmations - количество подтверждений депозита deposit_address_spot - адрес для спотового депозита deposit_address_advertising - адрес для рекламного депозита withdraw_can - статус вывода withdraw_min - минимальный вывод withdraw_fee_fixed - фиксированная комиссия вывода withdraw_fee_percent - процентная комиссия вывода explorer - проводник reserve - резерв биржи доступный для вывода Method:
POST /api/v1/transactions/
This method allows you to get your own history of recent transactions. Parameters:
ticker (тикер монеты) не обязательный
type (направление транзакции) не обязательный
direction (тип транзакции) не обязательный
from (начальная метка времени) не обязательный
to (конечная метка времени) не обязательный
limit (количество транзакций) не обязательный
tonce (метка времени в миллисекундах) обязательный Example of a PHP request:
Calling this method requires a digital signature via
$base_url = 'https://qutrade.io';
$method = '/api/v1/transactions/';
$api_key = 'YOU_API_SECRET';
$secret_key = 'YOU_API_SECRET';
$param['ticker'] = 'btc';
$param['tonce'] = round(microtime(true) * 1000);
$params = http_build_query($param);
$sign = hash_hmac('sha256', $params, $secret_key);
$headers = [
'API-Key: ' . $api_key,
'API-Sign: ' . $sign
];
$ch = curl_init($base_url.$method);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
curl_close($ch);
Пример выше вернет собственную историю последних транзакций только по монетам BTC и ETH. Response:
{
"result":"success",
"list":[
{
"ticker":"usdt",
"type":"on_chain",
"direction":"deposit",
"chain":"btc",
"address":"...",
"amount":1,
"transaction_id":"...",
"status":"completed",
"timestamp":1234567890
},
{
"ticker":"usdt",
"type":"off_chain",
"direction":"withdrawal",
"user_id":123,
"amount":1,
"transaction_id":"...",
"status":"processing",
"timestamp":1234567890
},
...
]
}
Description:
result - результат выполнения запроса
list - список транзакций type - тип транзакции direction - направление транзакции chain - сеть address - адрес user_id - идентификатор пользователя amount - сумма транзакции transaction_id - идентификатор транзакции timestamp - метка времени транзакции |
48 online
|
||
|
2026-01-07 Get a Bonus of 25 NUX + 1.7 DOGE 2025-12-03 Get a Bonus of 25 KRB + 50 S11 2025-11-12 Get a Bonus of 950 LHC + 0.0000025 BTC 2025-11-03 Get a Bonus of 100 VQR + 1 TRX 2025-10-21 We launched a liquidity shares market
2026-01-25 Listing 1st Base 2026-01-18 Listing Strayacoin 2026-01-06 Listing Nusacoin 2025-09-24 Listing Ultra Sonic USD 2025-09-06 Listing Bitcoin Silver
Documents
Services
Communication
$1346.46
280
|
|||