All Projects → andreas-glaser → poloniex-php-client

andreas-glaser / poloniex-php-client

Licence: MIT license
An efficient poloniex rest api client, built on top of guzzle

Programming Languages

PHP
23972 projects - #3 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to poloniex-php-client

drowsy
😪 Lazy integrations tool for RESTful interfaces to aid POC development and streamline integrations
Stars: ✭ 19 (+5.56%)
Mutual labels:  rest-client
resting
rest client WebExtension
Stars: ✭ 21 (+16.67%)
Mutual labels:  rest-client
restofus
Restofus - a cross-platform (REST) API client.
Stars: ✭ 18 (+0%)
Mutual labels:  rest-client
grpc-django-book-service
gRPC implementation integrated with Django Application.
Stars: ✭ 28 (+55.56%)
Mutual labels:  rest-client
poloniex
Poloniex API in Go
Stars: ✭ 14 (-22.22%)
Mutual labels:  poloniex
PronoteLib
Java library to get data from a PRONOTE (Index-Education) server.
Stars: ✭ 16 (-11.11%)
Mutual labels:  rest-client
libcryptomarket
Powerful cryptocurrency market analysis toolkit
Stars: ✭ 43 (+138.89%)
Mutual labels:  poloniex
PostBaby
A cross platform C++ native app to test HTTP endpoints, available for Windows, Linux and Mac
Stars: ✭ 14 (-22.22%)
Mutual labels:  rest-client
cryptox
Common API wrapper for multiple crypto currency exchanges
Stars: ✭ 50 (+177.78%)
Mutual labels:  poloniex
airtable local backup
Create local backups of airtable databases
Stars: ✭ 32 (+77.78%)
Mutual labels:  rest-client
Proxy
The type-safe REST library for .NET Standard 2.0 (NetCoreStack Flying Proxy)
Stars: ✭ 40 (+122.22%)
Mutual labels:  rest-client
intelirest-cli
A cli interpreter for intelliJ .http files
Stars: ✭ 23 (+27.78%)
Mutual labels:  rest-client
NClient
💫 NClient is an automatic type-safe .Net HTTP client that allows you to call web service API methods using annotated interfaces or controllers without boilerplate code.
Stars: ✭ 25 (+38.89%)
Mutual labels:  rest-client
YuiAPI
一个浏览器API测试客户端,API文档生成器,支持chrome/firefox/新版edge
Stars: ✭ 25 (+38.89%)
Mutual labels:  rest-client
restler
Restler is a beautiful and powerful Android app for quickly testing REST API anywhere and anytime.
Stars: ✭ 120 (+566.67%)
Mutual labels:  rest-client
healthcare-server
A rubyOnRails based web application with a small concept behind healthcare
Stars: ✭ 16 (-11.11%)
Mutual labels:  rest-client
algo-coin
Python library for algorithmic trading cryptocurrencies across multiple exchanges
Stars: ✭ 386 (+2044.44%)
Mutual labels:  poloniex
Rx.Http
A reactive way to make HTTP Request in .NET Core 🚀
Stars: ✭ 62 (+244.44%)
Mutual labels:  rest-client
Nescience-Indexing-CLI
Nescience Software & Capital Rebalancing Tool
Stars: ✭ 26 (+44.44%)
Mutual labels:  poloniex
httpyac
Command Line Interface for *.http and *.rest files. Connect with http, gRPC, WebSocket and MQTT
Stars: ✭ 103 (+472.22%)
Mutual labels:  rest-client

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);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].