ipad90 / sinegy-php
PHP library for connecting to the Sinegy API.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
pkg:composer/ipad90/sinegy-php
This package is auto-updated.
Last update: 2024-11-14 11:01:10 UTC
README
PHP library for connecting to the Sinegy API.
How to install
composer require "ipad90/sinegy-php"
Generating API credentials
Go to https://marketplace.sinegy.com/user/profile to generate API credentials.
Official Sinegy API Documentation
Link to Sinegy's API documentation page is https://docs.sinegy.com
Example
<?php
require('vendor/autoload.php');
use Ipad90\Sinegy\Marketplace;
$sinegy = new Marketplace('API_KEY', 'SECRET_KEY');
$sinegy_btc_ticker = $sinegy->ticker('btcmyr');
print_r($sinegy_btc_ticker);