pool/web/yaamp/core/exchange/alcurex.php
Tanguy Pruvot ccd8bed2e6 monitor the right webserver and new exchanges
Added cryptopia ticker, and prepare alcurex functions...
2015-07-14 09:29:10 +02:00

17 lines
348 B
PHP

<?php
// https://alcurex.org/index.php/crypto/api_documentation
function alcurex_api_query($method, $params='')
{
$uri = "https://alcurex.org/api/$method.php$params";
// debuglog("$uri");
$ch = curl_init($uri);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$execResult = curl_exec($ch);
$obj = json_decode($execResult);
return $obj;
}