Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.66 KB

README.md

File metadata and controls

35 lines (29 loc) · 1.66 KB

PrivatBank API

Library for connecting your PHP application with PrivatBank API

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Installation

The easiest way to install module is using Composer

composer require sergeynezbritskiy/privatbank-api:"^3.0"

Notes

For more details please visit [https://api.privatbank.ua/]

Simple usage

Using library is as easy as possible

//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');