daycry/coinmarketcap

PHP wrapper class for CoinMarketCap.

Maintainers

👁 daycry

Package info

github.com/daycry/coinmarketcap

pkg:composer/daycry/coinmarketcap

Statistics

Installs: 120

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

2.0.0 2019-09-29 19:27 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT b9dfb7bba5f007e57468f9f0d039a47cc9ebb377

  • Daycry <daycry9.woop@gmail.com>

This package is auto-updated.

Last update: 2026-06-29 01:20:51 UTC


README

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.