Difference between revisions of "WalletBit/API/Lookup"

From Bitcoin Wiki
Jump to: navigation, search
(Undo revision 39487 by WalletBit (talk))
(Add disclaimer)
 
Line 1: Line 1:
 +
The following information may no longer be true, WalletBit service was suspended
 +
See https://bitcointalk.org/index.php?topic=249751.new
 +
 +
The article is kept only as historic documentation.
 +
 
===Lookup deposit to Bitcoin address===
 
===Lookup deposit to Bitcoin address===
  

Latest revision as of 15:59, 6 April 2014

The following information may no longer be true, WalletBit service was suspended
See https://bitcointalk.org/index.php?topic=249751.new

The article is kept only as historic documentation.

Lookup deposit to Bitcoin address

$fields = array(
  'merchant' => 'owner@example.com',
  'address' => '1BPeF1tGHQj1tHoyZkFps1QKCbnqdx2yHE'
);
$fields['encrypted'] = strtoupper(hash('sha256', $fields['merchant'] . ':' . $fields['address'] . ':' . 'API Key'));

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://walletbit.com/api/lookup/deposit');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST, count($fields));
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($fields));
$response = curl_exec($ch);
curl_close($ch);

If successful $response returns a json encoded array containing batch number, amount, fee, confirmations, txid, address and timestamp of deposit to the provided Bitcoin address, otherwise empty.