Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.31 KB

README.md

File metadata and controls

32 lines (22 loc) · 1.31 KB

BuiltByBit PHP API Wrapper

GitHub license

A PHP wrapper for BuiltByBit's HTTP API.

  • Full coverage of the API.
  • Type hinting used for IDE autocomplete & readability.
  • Requests are dynamically stalled to stay within rate limiting rules.
  • No dependencies other than cURL - clone this repository and go!

Usage

An extensive list of examples can be found under the /examples directory.

<?php
require __DIR__ . "/../src/APIWrapper.php";

$token = new APIToken(TokenType::PRIVATE, "Find @ https://builtbybit.com/account/api");
$wrapper = new APIWrapper();

if ($error = $wrapper->initialise($token)->getError()) {
    die("API initialisation error: ". $error["message"]);
}

echo $wrapper->members()->fetch(87939)->getData()["username"];

Issues & Support

Whether you're wanting to report a bug you've come across during use of this wrapper or are seeking general help/assistance, please utilise the issues tracker and tag your issue appropriately during creation.

I try to respond to issues within a reasonable timeframe.