PHP code example of hubipe / finstat

1. Go to this page and download the library: Download hubipe/finstat library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hubipe / finstat example snippets



use Hubipe\FinStat\FinStat;
use Hubipe\FinStat\Request\GuzzleRequestClient;

$requestClient = new GuzzleRequestClient();
$client = new FinStat(
	$requestClient,
	$apiKey,
	$privateKey
);

$detailResult = $client->detail('36631124');
$autocompleteResult = $client->autocomplete('Slovenská pošta');
$czAutocompleteResult = $client->czAutocomplete('Česká pošta');