PHP code example of fastforex / fastforex-php-client

1. Go to this page and download the library: Download fastforex/fastforex-php-client 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/ */

    

fastforex / fastforex-php-client example snippets


\FastForex\Client::setApiKey('YOUR_API_KEY');

$response = (new FastForex\Client())->fetchAll('USD');
print_r($response);

$response = (new FastForex\Client())->fetchOne('USD', 'GBP');
echo $response->result->GBP;

$response = (new FastForex\Client())->fetchMulti('USD', ['GBP', 'EUR', 'CHF']);

$response = (new FastForex\Client())->convert('USD', 'GBP', 199.99);

$response = (new FastForex\Client())->currencies();

$response = (new FastForex\Client())->usage();

$response = (new FastForex\Client())->historical(new \DateTime('2021-04-01'), 'USD');

$response = (new FastForex\Client())->historical(new \DateTime('2021-04-01'), 'USD', ['EUR', 'GBP', 'CHF']);

$response = (new FastForex\Client())->timeSeries(
        new \DateTime('2021-04-01'),
        new \DateTime('2021-04-07'),
        'EUR',
        'CHF'
    );

try {
    \FastForex\Client::setApiKey('invalid key');
    $response = (new FastForex\Client())->fetchAll('USD');
} catch (\FastForex\Exception\APIException $exception) {
    echo $exception->getMessage(), PHP_EOL;
}
bash
composer