Client library for www.cryptocurrencychart.com API.

dev-master 2021-06-29 09:42 UTC

This package is auto-updated.

Last update: 2024-04-06 17:19:47 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