快速。方便。安全。
在你的网站上接受加密货币
用一个能为你节省时间和金钱的网关来发展你的业务
点击两下就能免费注册 •
2分钟内轻松设置 •
技术支持24/7
隐私
不需要身份证明;我们不保留交易细节
大规模赔付
将你的所有交易集中在一起 ,节省80%的费用
0%退款
交易不能在区块链上被取消或逆转
满足各种需求的加密货币支付网关
定制Plisio API以满足您的业务需求,并成为营业额超过3000亿美元的市场的一部分。
Finance
eCommerce
High Risk
Online Retail
Freelance
Marketplaces
Non-Profit
Adult
Creators
Games
Other
Crowdfunding
简单的代码。易于设置。
使用我们的代码,只需点击几下就可以连接你的业务。我们的API会告诉你,管理你的资金和发票或计算费用从未如此简单。
<?php
// Get balance:
$secretKey = "xxxxxxxxxxxxxxxxxxxxx";
$plisio = new \Plisio\ClientAPI($secretKey);
$currency = "DOGE";
$balance = $plisio->getBalances($currency);
if ($balance
&& isset($balance["status"])
&& $balance["status"] === "success"
) {
echo $balance["data"]["balance"];
} else {
print_r($balance);
}
?>
<?php
// Make payouts:
$secretKey = "xxxxxxxxxxxxxxxxxxxxx";
$plisio = new \Plisio\ClientAPI($secretKey);
$payments = [
"0xc0829421C1d260BD3Cb3E0f06CFE2D52dB2cE315" => 0.08850904,
"0x29551FC9c39A95d8f93ad4209944Ff05846A05F3" => 0.15489082,
];
$currency = "ETH";
$massWithdrawal = $plisio->createMassWithdrawal($payments, $currency);
if ($massWithdrawal
&& isset($massWithdrawal["status"])
&& $massWithdrawal["status"] === "success"
) {
header("Location: " . $massWithdrawal["data"]["tx_url"]);
} else {
print_r($massWithdrawal);
}
?>
<?php
// Create invoice:
$secretKey = "xxxxxxxxxxxxxxxxxxxxx";
$plisio = new \Plisio\ClientAPI($secretKey);
$request = [
"amount" => 0.00550550,
"currency" => "BTC",
"order_number" => "654",
"order_name" => "Manhattan",
"description" => "New York Pizza Delivery",
];
$invoice = $plisio->createTransaction($request);
if ($invoice
&& isset($invoice["status"])
&& $invoice["status"] === "success"
) {
header("Location: " . $invoice["data"]["invoice_url"]);
} else {
print_r($invoice);
}
?>
今天在 Plisio 上注册
在节省时间和金钱的同时发展你的业务
点击两下就能免费注册 •
2分钟内轻松设置 •
技术支持24/7
- 免费的注册和设置
- 24/7实时聊天支持
- 自动化的大规模支付
- 加强隐私和安全
- 多币种账户
- 趋势性的整合