This Document will guide you through the use of VaultX Wallet API
<?php
$content = @file_get_contents("https://www.vaultxwallet.com/ticker");
$obj = json_decode($content);
/*
$usd = $obj->USD;
$eur = $obj->EUR;
$gbp = $obj->GBP;
*/
?>
<?php
$url = "https://vaultxwallet.com/newaddress/YOUR WALLET ID";
$ch = curl_init($url);
$jsonData = array(
"api_code" => 'YOUR API CODE',
"api_secret" => 'YOUR API SECRET',
"password" => 'YOUR ACCOUNT PASSWORD',
"callback" => 'https://domain.com/receiver.php'
);
$jsonDataEncoded = json_encode($jsonData);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
$obj = json_decode($result);
/*
$status = $obj->status;
$message = $obj->message;
$address = $obj->address;
$wallet_id = $obj->wallet_id;
*/
?>
Whenever any address you generated receives coin you will get a notification to your callback URL
<?php
$amount = $_POST['amount'];
$address = $_POST['adddress'];
$txid = $_POST['txid'];
$rate = $_POST['current_price'];
$usd = $_POST['amount_usd'];
$wallet_id = $_POST['wallet_id'];
//You can use the variables to update records
?>
<?php
$amount = '0.02537170';
$address = 'DSCiNCPEuQITWXyGAUwjok9r1vHp5lzetqDLMx';
$url = "https://vaultxwallet.com/send/YOUR WALLET ID ";
$ch = curl_init($url);
$jsonData = array( "api_code" => 'YOUR API CODE', "api_secret" => 'YOUR API SECRET', "password" => YOUR ACCOUNT PASSWORD, "amount" => $amount, "address" => $address );
$jsonDataEncoded = json_encode($jsonData);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
/*
$obj = json_decode($result);
$status = $obj->status;
$message = $obj->message;
$address = $obj->address;
$txid = $obj->txid;
*/
?>
<?php
$url = "https://vaultxwallet.com/mybalance/YOUR WALLET ID ";
$ch = curl_init($url);
$jsonData = array(
"api_code" => 'YOUR API CODE',
"api_secret" => 'YOUR API SECRET',
"password" => 'YOUR ACCOUNT PASSWORD'
);
$jsonDataEncoded = json_encode($jsonData);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
$obj = json_decode($result);
$balance = $obj->DSC;
?>