Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 382 Bytes

File metadata and controls

15 lines (11 loc) · 382 Bytes

bitfinex-api-php

Bitfinex PHP API - Access all features of https://www.bitfinex.com trading platform

Get API keys from https://www.bitfinex.com/account/api

Usage Example

<?php
include_once('Bitfinex.php');

$api_key = 'xxxxxxxxxx';
$api_secret = 'yyyyyyyyyy';
$bfx = new Bitfinex($api_key, $api_secret);

var_dump($bfx->get_symbols());
?>