Skip to content

ozonetechnical/pay-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

PAY ozone API

Base URL : https://pay.o.zone/

1. Get Address for watch

https://pay.o.zone/newaddress?apikey=apikey&asset=BTC

apikey place apikey you recieved from panel.

asset it is BTC.

Signature

You Should send sign in header to authenticate your request.

sign is HMAC(SHA512) of your querystring.

This is an Example to calculate sign :

$params = array(
  "apikey" => 'APIKEY',
  "asset" => 'BTC'
  );
$query = http_build_query($params);
$sign = hash_hmac("SHA512",$query,$secretkey);

Pay.o.Zone API PHP examples

About

Pay.o.Zone API PHP examples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages