Client library for www.cryptocurrencychart.com API.

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/cryptocurrencychart/client

dev-master 2025-04-10 09:19 UTC

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