bedri/bitfinex-v1

Bitfinex API wrapper V1

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 2

Open Issues: 0

pkg:composer/bedri/bitfinex-v1

v1.0.1 2022-02-09 10:57 UTC

This package is auto-updated.

Last update: 2026-01-04 19:57:00 UTC


README

Bitfinex API wrapper V1

I get from somewhere (can't remember where, sorry) this API and make few changes for my own need.

Install

composer require bedri/bitfinex-v1

Usage

<?php

// Autoload files using the Composer autoloader.
require_once __DIR__ . '/../../vendor/autoload.php';

use Bitfinex\BitfinexV1;

$apiKey     = 'x';
$apiSecret  = 'y';

$bitfinex = new BitfinexV1($apiKey, $apiSecret);

print_r($bitfinex->platform_status());