Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rentberry/coinmarketcap-api-php
PHP client for CoinMarketCap JSON API
https://github.com/rentberry/coinmarketcap-api-php
blockchain coinmarketcap-api php sdk
Last synced: 9 days ago
JSON representation
PHP client for CoinMarketCap JSON API
- Host: GitHub
- URL: https://github.com/rentberry/coinmarketcap-api-php
- Owner: Rentberry
- License: mit
- Created: 2018-01-29T09:38:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T18:44:19.000Z (over 1 year ago)
- Last Synced: 2024-08-18T03:49:42.732Z (3 months ago)
- Topics: blockchain, coinmarketcap-api, php, sdk
- Language: PHP
- Homepage:
- Size: 36.1 KB
- Stars: 28
- Watchers: 5
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Coinmarketcap.com API Client
---
[![Build Status](https://img.shields.io/travis/Rentberry/coinmarketcap-api-php.svg?style=flat-square)](https://travis-ci.org/Rentberry/coinmarketcap-api-php)
[![License](https://img.shields.io/packagist/l/rentberry/coinmarketcap-api.svg?style=flat-square)](https://packagist.org/packages/rentberry/coinmarketcap-api)
[![Latest Stable Version](https://img.shields.io/packagist/v/rentberry/coinmarketcap-api.svg?style=flat-square)](https://packagist.org/packages/rentberry/coinmarketcap-api)
[![Total Downloads](https://img.shields.io/packagist/dt/rentberry/coinmarketcap-api.svg?style=flat-square)](https://packagist.org/packages/rentberry/coinmarketcap-api)PHP client for [CoinMarketCap JSON API](https://coinmarketcap.com/api/)
# Installation
```bash
composer require rentberry/coinmarketcap-api
```# Usage
```php
$client = new Rentberry\Coinmarketcap\Coinmarketcap();
$client->getTickers();
$client->getTicker('bitcoin');
$client->getExchangeRate('ethereum', 'USD');
$client->convertToFiat(10, 'ethereum', 'USD');
$client->convertToCrypto(10, 'USD', 'ethereum');
$client->getGlobal();
```# License
MIT. See [LICENSE](https://github.com/rentberry/coinmarketcap-api-php/blob/master/LICENSE)