Download the PHP package farzai/bitkub without Composer
On this page you can find all versions of the php package farzai/bitkub. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download farzai/bitkub
More information about farzai/bitkub
Files in farzai/bitkub
Package bitkub
Short Description The bitkub api wrapper
License MIT
Homepage https://github.com/farzai/bitkub-php
Informations about the package bitkub
Bitkub Wrapper - PHP (Unofficial)
Simplify the integration of the Bitkub API into your PHP application. Bitkub API Documentation
**Notes We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Bitkub, or any of its subsidiaries or its affiliates.
Installation
You can install the package via composer:
Basic Usage
Restful API
Websocket API
Documentation
- Bitkub Wrapper - PHP (Unofficial)
- Installation
- Basic Usage
- Documentation
- Market
- List all available symbols.
- Get the ticker for a specific symbol.
- List recent trades.
- List open buy orders.
- List open sell orders.
- List all open orders.
- Get user available balances
- Create a buy order.
- Create a sell order.
- Cancel an open order.
- Get balances info: this includes both available and reserved balances.
- List all open orders of the given symbol.
- List all orders that have already matched.
- Get information regarding the specified order.
- Crypto
- List all crypto addresses.
- Make a withdrawal to a trusted address.
- Make a withdraw to an internal address.
- List crypto deposit history.
- List crypto withdrawal history.
- Generate a new crypto address
- System
- Get server status.
- Get server timestamp.
- User
- Check trading credit balance.
- Check deposit/withdraw limitations and usage.
- Testing
- Changelog
- Contributing
- Security Vulnerabilities
- Credits
- License
Market
Call the market endpoint.
This will return an instance of Farzai\Bitkub\Endpoints\MarketEndpoint
class.
List all available symbols.
- GET
/api/market/symbols
Get the ticker for a specific symbol.
- GET
/api/market/ticker
List recent trades.
- GET
/api/market/trades
List open buy orders.
- GET
/api/market/bids
List open sell orders.
- GET
/api/market/asks
List all open orders.
- GET
/api/market/books
Get user available balances
- GET
/api/market/wallet
Create a buy order.
- POST
/api/v3/market/place-bid
Create a sell order.
- POST
/api/v3/market/place-ask
Cancel an open order.
- POST
/api/v3/market/cancel-order
Get balances info: this includes both available and reserved balances.
- POST
/api/v3/market/balances
List all open orders of the given symbol.
- GET
/api/v3/market/my-open-orders
List all orders that have already matched.
- GET
/api/v3/market/my-order-history
Get information regarding the specified order.
- GET
/api/v3/market/order-info
Crypto
Call the crypto endpoint.
This will return an instance of Farzai\Bitkub\Endpoints\CryptoEndpoint
class.
List all crypto addresses.
- GET
/api/v3/crypto/addresses
Make a withdrawal to a trusted address.
- POST
/api/v3/crypto/withdraw
Make a withdraw to an internal address.
- POST
/api/v3/crypto/internal-withdraw
List crypto deposit history.
- POST
/api/v3/crypto/deposit-history
List crypto withdrawal history.
- POST
/api/v3/crypto/withdrawal-history
Generate a new crypto address
- POST
/api/v3/crypto/generate-address
System
Call the system endpoint.
This will return an instance of Farzai\Bitkub\Endpoints\SystemEndpoint
class.
Get server status.
- GET
/api/status
Get server timestamp.
- GET
/api/v3/servertime
User
Call the user endpoint.
This will return an instance of Farzai\Bitkub\Endpoints\UserEndpoint
class.
Check trading credit balance.
- POST
/api/v3/user/trading-credits
Check deposit/withdraw limitations and usage.
- POST
/api/v3/user/limits
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- parsilver
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of bitkub with dependencies
farzai/support Version ^1.2
farzai/transport Version ^1.2
phrity/websocket Version ^2.0