Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

cryptocurrencychart-api

  • Clone with SSH
  • Clone with HTTPS
  • Name Last commit Last update
    example
    src
    .gitignore
    README.md
    composer.json
    license

    CryptoCurrencyChart API PHP library

    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