Download the PHP package cryptapi/php-cryptapi without Composer
On this page you can find all versions of the php package cryptapi/php-cryptapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cryptapi/php-cryptapi
More information about cryptapi/php-cryptapi
Files in cryptapi/php-cryptapi
Package php-cryptapi
Short Description CryptAPI's PHP library
License MIT
Homepage https://github.com/cryptapi/php-cryptapi
Informations about the package php-cryptapi
CryptAPI's PHP Library
Official PHP library of CryptAPI
Table of Contents
- Requirements
- Installation
- API and utils
- Help
Requirements:
Installation
API and utils
Generating a new address
Where:
$coin
is the coin you wish to use, from CryptAPI's supported currencies (e.g 'btc', 'eth', 'erc20_usdt', ...
)
$my_address
is your own crypto address, where your funds will be sent to
$callback_url
is the URL that will be called upon payment
$parameters
is any parameter you wish to send to identify the payment, such as ['order_id' => 1234]
$cryptapi_params
parameters that will be passed to CryptAPI (check which extra parameters are available here: https://docs.cryptapi.io/#operation/create)
$payment_address
is the newly generated address, that you will show your users
$api_key
is the API Key provided by BlockBee, since this library is also compatible with BlockBee API.
With get_address()
you will be creating the request in our API using this endpoint: https://docs.cryptapi.io/#operation/create.
Response sample:
Getting notified when the user pays
The URL you provided earlier will be called when a user pays, for easier processing of the request we've added the process_callback
helper
The $payment_data
will be an array with the following keys:
address_in
- the address generated by our service, where the funds were received
address_out
- your address, where funds were sent
txid_in
- the received TXID
txid_out
- the sent TXID or null, in the case of a pending TX
confirmations
- number of confirmations, or 0 in case of pending TX
value
- the value that your customer paid
value_coin
- the value that your customer paid, in the main coin denomination (e.g BTC
)
value_forwarded
- the value we forwarded to you, after our fee
value_forwarded_coin
- the value we forwarded to you, after our fee, in the main coin denomination (e.g BTC
)
coin
- the coin the payment was made in (e.g: 'btc', 'eth', 'erc20_usdt', ...
)
pending
- whether the transaction is pending, if false
means it's confirmed
plus, any values set on $params
when requesting the address, like the order ID.
From here you just need to check if the value matches your order's value.
Checking the logs of a request
All the data
returned in the response can be checked here: https://docs.cryptapi.io/#operation/logs
Response sample:
Generating a QR code
For object creation, same parameters as before. You must first call get_address
as this method requires the payment address to have been created.
Where:
$value
Value to request the user, in the main coin (BTC, ETH, etc). Optional, pass false
to not add a value to the QR.
$size
Size of the QR Code image in pixels. Optional, pass false
to use the default size of 512.
Response is an object with qr_code
(base64 encoded image data) and payment_uri
(the value encoded in the QR), see https://docs.cryptapi.io/#operation/qrcode for more information.
Response sample:
Usage
Estimating transaction fees
Where:
$coin
is the coin you wish to check, from CryptAPI's supported currencies (e.g 'btc', 'eth', 'erc20_usdt', ...
)
$addresses
The number of addresses to forward the funds to. Optional, defaults to 1.
$priority
Confirmation priority, needs to be one of ['fast', 'default', 'economic']
. Optional, defaults to default
.
Response is an object with estimated_cost
and estimated_cost_usd
, see https://docs.cryptapi.io/#operation/estimate for more information.
Response sample:
Converting between cryptocurrencies and FIAT
Where:
$coin
the target currency to convert to, from CryptAPI's supported currencies (e.g 'btc', 'eth', 'erc20_usdt', ...
)
$value
Value to convert in from
.
$from
Currency to convert from, FIAT or crypto.
Response is an object with value_coin
and exchange_rate
, see https://docs.cryptapi.io/#operation/convert for more information.
Response sample:
Getting supported coins
Response is an array with all support coins.
Response sample:
Help
Need help?
Contact us @ https://cryptapi.io/contacts/
All versions of php-cryptapi with dependencies
ext-curl Version *
ext-json Version *