www.cryptocurrencychart.com API 的客户端库。

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

This package is auto-updated.

Last update: 2024-09-06 18:20:14 UTC


README

PHP 库,用于访问 CryptoCurrencyChart API,您可以从该 API 获取历史和当前的加密货币价格数据。许可协议为 MIT。

用法

$client = new Client('apiKey', 'apiSecret');
$coins = $client->getCoins();
$firstCoin = reset($coins);
$client->viewCoin($firstCoin->id);

版本 0.1

  • 基本库
  • 示例