ZB docs https://www.zb.live/api
All interface methods are initialized the same as those provided by Zb. See details src/api
Most of the interface is now complete, and the user can continue to extend it based on my design, working with me to improve it.
Exchanges It includes all of the following exchanges and is highly recommended.
composer require linwj/zb
Support for more request Settings
$zb=new Zb();
//You can set special needs
$zb->setOptions([
//Set the request timeout to 60 seconds by default
'timeout'=>10,
//If you are developing locally and need an agent, you can set this
//'proxy'=>true,
//More flexible Settings
/* 'proxy'=>[
'http' => 'http://127.0.0.1:12333',
'https' => 'http://127.0.0.1:12333',
'no' => ['.cn']
], */
//Close the certificate
//'verify'=>false,
]);
Market related API More
$zb=new Zb($key,$secret);
try {
$result=$zb->market()->getAllTicker();
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}
try {
$result=$zb->market()->getTicker([
'market'=>'btc_usdt'
]);
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}
try {
$result=$zb->market()->getDepth([
'market'=>'btc_usdt',
'size'=>'5'
]);
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}
try {
$result=$zb->market()->getTrades([
'market'=>'btc_usdt',
'since'=>'xxxxxxxxx'
]);
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}
try {
$result=$zb->market()->getKline([
'market'=>'btc_usdt',
//'type'=>'1day',
'size'=>10
]);
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}
Order related API More
$zb=new Zb($key,$secret);
try {
$result=$zb->trade()->order([
//'customerOrderId'=>'',
'tradeType'=>'0',//1=buy,0=sell
'currency'=>'btc_usdt',
'price'=>'11000',
'amount'=>'0.01',
]);
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}
try {
$order=$zb->trade()->getOrder([
//'customerOrderId'=>'',
'id'=>$result['id'],
'currency'=>'btc_usdt',
]);
print_r($order);
}catch (\Exception $e){
print_r($e->getMessage());
}
try {
$result=$zb->trade()->cancelOrder([
//'customerOrderId'=>'',
'id'=>$result['id'],
'currency'=>'btc_usdt',
]);
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}
Accounts related API More
$zb=new Zb($key,$secret);
try {
$result=$zb->account()->getSubUserList();
print_r($result);
}catch (\Exception $e){
print_r($e->getMessage());
}