dec-top

加密支付业务增长解决方案

接受 100 多种加密货币,手续费全网最低,仅为 0.03%

  • 即时结算

    即时结算

    CCPayment实时结算付款,商家无需等待结算周期,提升资金流动性!

  • 简单设置

    简单设置

    通过平台插件或与API的快速集成,我们提供支付按钮和托管结账。

  • 全球化

    全球化

    使用CCPayment强大的API,无论何地都能接收比特币付款。

  • 自动提现

    自动提现

    CCPayment支持商家收到付款后自动转入指定钱包,提现更高效!

点击即可与销售人员快速聊天。
联系我们

全网 最低服务费

只收取支付金额的0.03%作为服务费,低于市面上其他任何平台,费用全网最低。

dec
dec
超光速
交易发起几秒内
收到链上付款状态通知的感觉很棒

定制满足你业务的钱包系统

创建带有永久地址的钱包

集成这款用户友好型的钱包API,轻松创建定制的带有永久代币地址的钱包,让用户感受丝滑的支付体验

设置您自己的代币/货币清单

定制您的代币清单来满足各种业务需求。根据您偏好的代币来自由设置。将您喜欢的代币添加到钱包系统中并启用掌上存取功能

自定义服务费来增加收入

通过为您的钱包系统自定义交易费,最大限度地提高您的收入和利润。并为您的用户提供透明、无忧的支付体验

支付方式

支持所有主流加密货币,
您的客户在结账时总能找到理想的付款代币!

与70多个钱包兼容让您的目标客户,您的业务不受限地使用

CCPayment支持80+国家 并为加密货币支付提供统一的API

深得数千合作伙伴信赖

/_next/static/media/comment-1.ce1ede34.svg
/_next/static/media/comment-2.12de998b.svg
/_next/static/media/comment-3.a76372e9.svg
/_next/static/media/comment-4.76db9e17.svg
/_next/static/media/comment-5.565895c9.svg
/_next/static/media/comment-6.cf7d8933.svg
/_next/static/media/comment-7.dd4d6ef7.svg
/_next/static/media/comment-8.4c6b62f2.svg
/_next/static/media/comment-9.09297601.svg
/_next/static/media/comment-10.4b56f858.svg
/_next/static/media/comment-11.b31f79ef.svg
/_next/static/media/comment-12.1890f6c6.svg
/_next/static/media/comment-13.010e02c0.svg
简易设置

开发者友好型支付处理

在专门的管理设备全面的集成支持下,我们提供市场上最好的API之一。使用CCpayment的开发者平台意味着减少对遗留系统的维护,更多地关注客户和产品体验。

马上体验arr-right
logo-ccpayment
Node.js
Ruby
Python
Go
PHP
Java
.NET
const ccpayment = require("ccpayment-sdk/nodejs/ccpayment.js")

      ccpayment.init(appId, appSecret)

      ccpayment.checkoutURL({
        order_valid_period: 823456,
        product_price: "1",
        merchant_order_id: "20230802175623",
        product_name: "test",
        return_url: "https://app.gitbook.com/xxxxx",
        // ...req
  }, 
   (res) => {
       ...
  }
);
$ccpayment = require 'ccpayment'

$createParams = {
  amount: 2000,
  currency: 'usd',
  description: 'My first payment'
}

$paymentIntent = paymentIntentCreate($params);

$paymentParams = {
  id: paymentIntent.id,
  payment_method: 'pm_card_mastercard'
}

$ccpayment.paymentIntentsConfirm();
    
python
import ccpayment
    
#init
pay = ccpayment.CCPaymentClass(app_id, app_secret) 
    
#interface called:get_support_coin
data, is_verify = pay.get_support_coin()
    
if is_verify:
  #Verify signature successfully
    
else: 
  #Verify signature failed
    
import "github.com/cctip/ccpayment-sdk"
func main() {
  api := ccpayment.NewPaymentApi("api_key")

  bill, err :=
  api.Create(&ccpayment,CreatePaymentRequest{Amount: "2000",
  Currency: "usd", Description: "My first payment"})
    if err != nil {
      // handle errors
      return
    }
    err :=
  api.Confirm(&ccpayment,CreatePaymentRequest{BillId:bill.Id,
  PaymentMethod: "pm_card_mastercard"})
    if err != nil {
      // handle errors
    }
}
    
...
<?php

use CCPayment\v1\CCPay;

$resp =  CCPay::CheckUser(
  "9454818",
  "202301310325561620262074393440256",
  "c4600b8125b7ed23b5b7b8ee4acb42f4"
  );
var_dump($resp);
...
    
import com.ccpayment.apis;
import com.ccpayment.beans.*;
    
.....
    
CCPaymentApis ccpaymentApi = CCPaymentApis.getInstance(
  "ccpament appid from platform", 
  "ccpayment app secret from platform"
  );

// Create order
CreateOrderParam param = new CreateOrderParam();
param.setProductPrice("0.07");
param.setTokenId("2e6cfa7d-f658-455d-89cd-31ebbcfdfa2c");
param.setRemark("order remark");
param.setMerchantOrderId("your order id");
param.setDenominatedCurrency("TOKEN");
param.setNotifyUrl("https://xxxxxxxx.com/notify.url");
param.setOrderValidPeriod(1800);
param.setCustomValue("custom value");
CreateOrderResponse resp = ccpaymentApi.createOrder(param);

// Get checkout URL
CheckoutUrlParam param = new CheckoutUrlParam();
param.setProductPrice("1000");
param.setMerchantOrderId("order no 45");

param.setReturnUrl("https://www.xxxx.com/callback");
param.setProductName("product name");
param.setNotifyUrl("https://xxxxxxxx.com/notify.url");
param.setOrderValidPeriod(1800);
param.setCustomValue("custom value");
CheckoutUrlResponse resp = ccpaymentApi.checkoutUrl(param);

// Get supported coins
GetSupportCoinResponse resp = ccpaymentApi.getSupportCoin();

// Get token balance
AssetsParam param = new AssetsParam();
param.setTokenId("e8f64d3d-df5b-411d-897f-c6d8d30206b7");
AssetsResponse resp = ccpaymentApi.assets(param);
    
.....
using ccpayment;
{
  var paymentIntent = paymentIntents.create({
    amount: 2000,
    currency: "usd",
    descrition: "My first payment"
  })
  ccpayment.paymentIntents.confirm({
    id: paymentIntent.id,
    payment_method: "pm_card_mastercard"
  })
}
    
business-protectdec
保护您的商务

数据&资产安全保障

  • locksmith

    采用NIST数据加密标准以防止数据篡改

  • locksmith

    使用双重密钥加密保护账户资产

  • locksmith

    双重加密和多重身份验证

马上体验
dec-top

我们的服务受众

成熟的企业,新创业公司,以及介于两者之间的所有B端。

我们为所有公司和行业提供服务,包括:

  • 咨询与顾问咨询与顾问
  • 进出口贸易进出口贸易
  • 电子商务、零售和分销电子商务、零售和分销
  • 制药、健康与保健制药、健康与保健
  • 软件以及应用程序开发软件以及应用程序开发
  • 电信、电子电信、电子
  • 设计与营销服务设计与营销服务
  • 博彩与乐透博彩与乐透
  • 制造业制造业
  • SaaS公司和初创企业SaaS公司和初创企业
  • 金融服务金融服务
  • 房地产与建筑房地产与建筑
  • 物流物流
  • 咨询与顾问咨询与顾问
  • 进出口贸易进出口贸易
  • 电子商务、零售和分销电子商务、零售和分销
  • 制药、健康与保健制药、健康与保健
  • 软件以及应用程序开发软件以及应用程序开发
  • 电信、电子电信、电子
  • 设计与营销服务设计与营销服务
  • 博彩与乐透博彩与乐透
  • 制造业制造业
  • SaaS公司和初创企业SaaS公司和初创企业
  • 金融服务金融服务
  • 房地产与建筑房地产与建筑
  • 物流物流

加入合作伙伴社区吧

使用我们强大的API、电子商务、托管支付页面,帮助您的企业获得快速、低成本的加密支付和结账。

step

常见问题

支持哪些加密货币?

支持超过100种热门加密货币支付,包括比特币、以太坊、狗狗币、莱特币、泰达币……

如何将加密货币转换为法定货币?

只需轻松点击,选择兑换货币和金额,就可以通过我们的后台兑换法定货币。

交易费是多少?

只收取支付金额的0.03%的服务费,市场上全平台收费最低。