Download the PHP package houseofapis/currencyapi without Composer
On this page you can find all versions of the php package houseofapis/currencyapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download houseofapis/currencyapi
More information about houseofapis/currencyapi
Files in houseofapis/currencyapi
Package currencyapi
Short Description Composer package for the CurrencyApi.net JSON & XML live currency feed
License MIT
Homepage https://currencyapi.net
Informations about the package currencyapi
CurrencyApi PHP wrapper
CurrencyApi.net provides live currency rates via a REST API. A live currency feed for over 152 currencies, including physical (USD, GBP, EUR + more) and cryptos (Bitcoin, Litecoin, Ethereum + more). A JSON and XML currency api updated every 60 seconds.
Features:
- Live exchange rates (updated every 60 seconds).
- 152 currencies world currencies.
- Popular cryptocurrencies included; Bitcoin, Litecoin etc.
- Convert currencies on the fly with the convert endpoint.
- Historical currency rates back to year 2000.
- Easy to follow documentation
Signup for a free or paid account here.
This package is a:
PHP wrapper for CurrencyApi.net endpoints.
Developer Guide
For an easy to following developer guide, check out our PHP Developer Guide.
Alternatively keep reading below.
Prerequisites
- Minimum PHP 7.1+
- Working on PHP 8.2.10
- Free or Paid account with CurrencyApi.net
- Composer or clone this repo
Test Coverage
- 100% coverage
Installation
Using composer:
then include the package with:
Without composer:
Usage
Live rates:
Example with all available methods:
Available methods for rates endpoint
Methods | Description |
---|---|
setBase() |
The base currency you wish you receive the currency conversions for. This will output all currency conversions for that currency. Default: USD. |
setOutput() |
Response output in either JSON or XML. Default: JSON. |
setLimit() |
Limit which currency conversions are returned using the limit param. Comma separated (no space) values. Optional |
List of available currencies:
Example with all available methods:
Available methods for currencies endpoint
Methods | Description |
---|---|
setOutput() |
Response output in either JSON or XML. Default: JSON. |
Convert:
Available methods for convert endpoint
Methods | Description |
---|---|
setAmount() |
The value of the currency you want to convert from. This should be a number and can contain a decimal place. Required. |
setFrom() |
The currency you want to convert. This will be a three letter ISO 4217 currency code from one of the currencies we have rates for. Required. |
setTo() |
The currency you want to convert the amount 'to'. Again this will be a three letter currency code from the ones we offer. Required. |
setOutput() |
Response output in either JSON or XML. Default: JSON. |
Historical:
Example with all available methods:
Available methods for historical endpoint
Methods | Description |
---|---|
setDate() |
The historical date you wish to receive the currency conversions for. This should be formatted as YYYY-MM-DD. Required. |
setBase() |
The base currency you wish you receive the currency conversions for. This will output all currency conversions for that currency. Default: USD. |
setOutput() |
Response output in either JSON or XML. Default: JSON. |
setLimit() |
Limit which currency conversions are returned using the limit param. Comma separated (no space) values. Optional |
Timeframe:
Example with all available methods:
Available methods for timeframe endpoint
Methods | Description |
---|---|
setStartDate() |
The historical date you wish to receive the currency conversions from. This should be formatted as YYYY-MM-DD. Required. |
setEndDate() |
The historical date you wish to receive the currency conversions until. This should be formatted as YYYY-MM-DD. Required. |
setBase() |
The base currency you wish you receive the currency conversions for. This will output all currency conversions for that currency. Default: USD. |
setOutput() |
Response output in either JSON or XML. Default: JSON. |
setLimit() |
Limit which currency conversions are returned using the limit param. Comma separated (no space) values. Optional |
All versions of currencyapi with dependencies
ext-curl Version *
ext-json Version *
ext-simplexml Version *