dmbozhok / coingecko-api
Small piece of coingecko api
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/dmbozhok/coingecko-api
Requires
- php: >=7.0.0
This package is auto-updated.
Last update: 2021-05-24 03:47:15 UTC
README
Small piece of coingecko api
Sample usage:
use Coingecko\Coingecko;
$arr = ['dash'];
$client = new Coingecko();
echo('<pre>');
foreach($arr as $val) {
print_r($client->getCurrencyInfo($val));
echo("\n");
}
echo('</pre>');