cryptocurrencychart / client
Client library for www.cryptocurrencychart.com API.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Forks: 0
pkg:composer/cryptocurrencychart/client
Requires
- php: >=7.4.0
 
This package is auto-updated.
Last update: 2025-10-10 08:27:35 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