Skip to content

An efficient poloniex rest api client, built on top of guzzle

License

Notifications You must be signed in to change notification settings

mosiyash/poloniex-php-client

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Poloniex PHP Client

An efficient poloniex rest api client, built on top of guzzle

Requirements

Installation

composer require andreas-glaser/poloniex-php-client dev-master

Usage

<?php

use AndreasGlaser\PPC\PPC;

$apiKey = 'YOUR_PRIVATE_API_KEY';
$apiSecret = 'YOUR_PRIVATE_API_SECRET';

/** @var PPC $pcc */
$pcc = new PPC($apiKey, $apiSecret);

$result = $pcc->buy('BTC_ETH', 0.034, 100, 1);

var_dump($result->decoded);

About

An efficient poloniex rest api client, built on top of guzzle

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 99.2%
  • Shell 0.8%