Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 628 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 628 Bytes

yunbi-client-php

A simple PHP client for Crypto Trade Site Yunbi.com

Quick example

<?php
require_once('lib/yunbi-client.php');

try {
  $client = new YunbiClient(array(
                  'access_key' => 'Your access key',
                  'secret_key' => 'Your secret key'
            ));
  //var_dump($client->get('/api/v2/markets.json');
  //var_dump($client->get('/api/v2/members/me.json'));
  //var_dump($client->post('/api/v2/order/delete.json',['id' => 1]));
}
catch (Exception $e) {
  die($e);
}

API Document

API_v2