Buy
Price
EUR
€100.00
≈ 116.00 USD (approx.)
Pay Example store
Order ID : ORDER-TEST-47894619014
Product€14.99
Credit Cards
Powered by
Payblis
Customer Pay
116.00
USD
You Get (Instantly)
103
USDC
<?php
// Payment request (excerpt — full field list in docs)
$MyVars = array(
'MerchantKey' => 'YOUR_API_KEY',
'amount' => '19.99',
'currency' => 'EUR',
// … customer, urls, ipnURL, etc.
);
$token = base64_encode(serialize($MyVars));
$paymentUrl =
'https://pay.payblis.com/api/payment_gateway.php?token='
. $token;
header('Location: ' . $paymentUrl);
exit;