Skip to content
This repository has been archived by the owner on Mar 22, 2020. It is now read-only.

wargo32/PHP-ccex-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PHP-ccex-api

C-cex.com API class

How to use:

require_once('CcexAPI.php');
$CcexAPI = new CcexAPI({API_KEY});

You can use empty API_KEY, if you use only public API (getPairs and getTickerInfo)

Get pairs quickexample

$CcexAPI->getPairs();

Get ticker quick example

$CcexAPI->getTickerInfo('btc-usd');

Get trade volumes for specific pair

$CcexAPI->getVolumes(24, 'btc-usd');

Get last trade volumes for all pairs

$CcexAPI->getVolumes(24);

Get order list quick example

$orders = $CcexAPI->getOrders('btc-usd',1);

Get history list quick example

$history = $CcexAPI->getHistory('btc-usd',0,time());

Get self history

$history = $CcexAPI->getHistory('btc-usd',0,time(),true);

Make order example

$status = $CcexAPI->makeOrder('sell','btc-usd',100,820);

Cancel order example

$cancel = $CcexAPI->cancelOrder(1228);

About

C-cex.com Api class

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%