/luno-php

PHP SDK for the Luno API

Primary LanguagePHPMIT LicenseMIT

Luno API Build Status

This PHP package provides a wrapper for the Luno API.

Installation

composer require "luno/luno-php"

Authentication

Please visit the Settings page to generate an API key.

Example usage

$client = new Luno\Client();
$client->setAuth("api_key_id", "api_key_secret");

$req = new Luno\Request\GetOrderBook();
$req->setPair("XBTZAR");

try {
  $res = $client->getOrderBook($req);
  echo "Found " . count($res->getBids()) . " bid(s)";
} catch (Luno\Error $e) {
  echo $e->message();
}

License

MIT