cryptocurrencychart / client
Client library for www.cryptocurrencychart.com API.
dev-master
2025-04-10 09:19 UTC
Requires
- php: >=7.4.0
This package is auto-updated.
Last update: 2025-04-10 07:26:15 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