Skip to content

bitfinexcom/bitfinex-api-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bitfinex-api-php

Features

  • Official implementation
  • REST v2 API

Installation

composer require bitfinex/api-rest

Usage

require __DIR__.'/vendor/autoload.php';

use BFX\RESTv2;

$restV2 = new RESTv2([
  'apiKey' => '...',
  'apiSecret' => '...',
  'transform' => true
]);

try {
  $res = $restV2->userInfo();
  print_r($res);
} catch (\Throwable $ex) {
  var_dump($ex->getMessage());
}

Testing

composer run-script test

Docs

Documentation at https://docs.bitfinex.com/v2/reference

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages