wilkques / exchange-rate
Easy Exchange Rate
v1.0.0
2022-03-10 03:49 UTC
Requires
- php: ^7.4|^8.0
- ext-curl: *
- ext-json: *
- wilkques/http-client: ^1.0.0
README
composer require wilkques/exchange-rate
API
API | Url | Document |
---|---|---|
exchangeratesapi | https://api.exchangeratesapi.io | https://exchangeratesapi.io/documentation/ |
How to use
-
Get ExchangeRatesApi
use Wilkques\ExchangeRates\ExchangeRate; use Wilkques\ExchangeRates\Enum\FactoriesEnum; $exchangeRate = (new ExchangeRate)->exchangeRate( FactoriesEnum::Exchangeratesapi )->token('<access token>'); // or $exchangeRate = ExchangeRate::make( FactoriesEnum::Exchangeratesapi )->token('<access token>')
-
Example
$currencies = $exchangeRate->symbols(); $currencies->throw(); // throw exception // or $currencies->throw(function ($response, $exception) { // code }); $currencies = $currencies->json(); // to array
-
All Methods
- ExchangeRatesApi
Methods Description token
set access token url
set api url apiVersion
set api version currencies
set currencies callback
set callback base
set base from
set from to
set to amount
set amount startDate
set startDate endDate
set endDate latest
call api with latest symbols
call api with symbols historical
call api with historical convert
call api with convert timeseries
call api with timeseries fluctuation
call api with fluctuation throw
throw Exception
- ExchangeRatesApi