/coinmarketcap

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

CoinMarketCap PHP Wrapper

PHP wrapper class for CoinMarketCap, built on top of HttpFull.

Requirements

Installation

composer require daycry/coinmarketcap

Usage

<?php

require __DIR__ . '/vendor/autoload.php';

use CoinMarketCap\Base;

$coinmarketcap = new Coinmarketcap( 'key' );

// Get ticker
$coinmarketcap->getLatest();

// Get global data
$coinmarketcap->getGlobal();

See the API documentation for more information about the endpoints and responses.