A PHP implementation of the Bitstamp API
- php: ^5.6 || ^7.0
- paragonie/random_compat: >=2
- guzzlehttp/guzzle: ^6.3
Using Composer
composer require jkosmetos/php-bitstamp-api
The API KEY
and SECRET
can be obtained via your Bitstamp profile.
$client = new Client();
$pairs = $client->getTradingPairsInfo();
var_dump($pairs);
- Private methods
- More examples
- Unit tests
- Better documentation
- John Kosmetos - jkosmetos
This project is licensed under the MIT License - see the LICENSE file for details