cryptocurrencychart / client
Client library for www.cryptocurrencychart.com API.
dev-master
2021-06-29 09:42 UTC
Requires
- php: >=7.4.0
This package is auto-updated.
Last update: 2024-10-06 18:33:33 UTC
README
PHP library to access the CryptoCurrencyChart API where you can retrieve historical and current crypto currency price data. Licensed under the MIT license.
Usage
$client = new Client('apiKey', 'apiSecret');
$coins = $client->getCoins();
$firstCoin = reset($coins);
$client->viewCoin($firstCoin->id);
Version 0.1
- Basic library
- Examples