Introduction

Coino Live is a blockchain payment processor, established in 2014 in Vilnius, Lithuania. Currently, we serve thousands of merchants globally, and support over 68 cryptocurrencies, including Bitcoin, Litecoin, Ethereum and others. Our mission is to grow adoption of cryptocurrencies on a global scale by laying out a reliable payments infrastructure that caters for the needs of both merchants and their customers: accessible, convenient and customer oriented.

With our solution, each and every business owner can start accepting cryptocurrencies as a form of payment using our API. To all of our merchants, we offer a simple framework for payment settlement. Whichever currency the customer pays with, you have an option to exchange it for Euros, bitcoin, and several other cryptocurrencies at the moment of receiving the payment. This way, we maintain things convenient for the merchant, but flexible for the shopper.

Merchant Payment Gateway

Our gateway provides full automation for accepting Bitcoin, Litecoin, Ether and other coins, unique addresses for each order, real-time transparent exchange rates for customers, and a platform for merchants to track and manage their payment history and payouts.

Configuration of our API for processing payments on virtually any website is rather straightforward. Merchant API credentials can be created from your CoinGate account, where you can also add your payout details based on your preferred option for receiving settlements.

Create Order

Create order at Coino Live and redirect shopper to invoice (payment_url). This is private API endpoint and requires authentication.


                $curl = curl_init();
$payload = array(
  "Amount" => 10,//USD Amount
  "Callback" => "https://domain.com/verify_payment",//Enter Callback Url for verification payment
"Description"=>"Pay For shoes",//Enter Description for Payment
"Gate_ID"=>"M-2",//Enter Gate ID
"Create"=>true
);
curl_setopt_array($curl, [
  CURLOPT_HTTPHEADER => [
    "Content-Type: application/json",
    "x-api-key: YOUR_API_KEY_HERE"
  ],
  CURLOPT_POSTFIELDS => json_encode($payload),
  CURLOPT_URL => "https://coino.live/api/v1/order",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_CUSTOMREQUEST => "POST",
]);

$response = curl_exec($curl);
$error = curl_error($curl);
curl_close($curl);
if ($error) {
  echo "cURL Error #:" . $error;
} else {
  echo $response;
}
Api Return an Order ID

{
"Order_ID": "YTVic0JMT1RFdkI4WEJIRXBTV0RMUT09"
}

Redirect Payment

You Must Redirect to the url


          header("location: https://coino.live/orders/".$Order_ID);

Verify Payment

You Must put this code in callback verification file for check orer status


              $curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_HTTPHEADER => [
    "x-api-key: YOUR_API_KEY_HERE"
  ],
  CURLOPT_URL => "https://coino.live/api/v1/verify?order=".$Order_ID,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$error = curl_error($curl);

curl_close($curl);

if ($error) {
  echo "cURL Error #:" . $error;
} else {
  echo $response;
}

Woocommerce Plugin

Download Woocommerce Plugin for your shop

Download