wilkques/exchange-rate

Easy Exchange Rate

v1.0.0 2022-03-10 03:49 UTC

This package is auto-updated.

Last update: 2025-03-17 08:22:28 UTC


README

Latest Stable Version License

composer require wilkques/exchange-rate

API

API Url Document
exchangeratesapi https://api.exchangeratesapi.io https://exchangeratesapi.io/documentation/

How to use

  1. 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>')
  2. Example

    $currencies = $exchangeRate->symbols();
    
    $currencies->throw(); // throw exception
    
    // or
    
    $currencies->throw(function ($response, $exception) {
        // code
    });
    
    $currencies = $currencies->json(); // to array
  3. All Methods

    1. 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

REFERENCE

  1. Exchangeratesapi
  2. Http Client