PrivatBank API
Library for connecting your PHP application with PrivatBank API, (*1)
, (*2)
Installation
The easiest way to install module is using Composer, (*3)
composer require sergeynezbritskiy/privatbank-api:"^3.0"
Notes
For more details please visit [https://api.privatbank.ua/], (*4)
Simple usage
Using library is as easy as possible, (*5)
//create public client for connecting with API
$client = new \SergeyNezbritskiy\PrivatBank\PublicClient();
//run the request
$result = $client->infrastructure(\SergeyNezbritskiy\PrivatBank\Request\InfrastructureRequest::TYPE_ATM, 'Днепр');
//create authorized client for connecting with API
$client = new \SergeyNezbritskiy\PrivatBank\AuthorizedClient();
//create merchant
$merchant = new \SergeyNezbritskiy\PrivatBank\Merchant('<your_merchant_id>', '<your_merchant_secret>');
$client->setMerchant($merchant);
//run the request
$result = $client->balance('4111111111111111');