dec-top

加密付款企業成長的解決方案

接收超過 100 種加密貨幣,並且只收取 0.3% 為市場最低收續費。

Comprehensive Crypto Payment Solutions
Fast, secure and reliable crypto payment and settlement
Swap API
Integrate our Swap API into your platform for a seamless crypto swap experience for your clients.
Payment Links
Send payment links to your clients via email or API for one-time or recurring payments.
E-Commerce Plugin
Effortlessly integrate CCPayment into popular eCommerce platforms using our ready-to-use plugins.
Auto-withdrawal
Automatically transfer assets to your designated address instantly, daily, or weekly.
Auto-swap to Stable Coins
Convert your tokens to stable coins automatically to protect your assets from potential market volatility.
Crypto to Fiat
Convert your crypto assets to fiat currency and receive your payment globally.

最低的服務費 上市

免費且開源的 API,服務費只有支付金額的 0.3%,低於市面上的其他所有收費平台

dec
dec
閃電般的快
Instant Settlement
Deposits are available for instant withdrawal without any waiting time.
Instant Notification
Get transaction notifications in a few seconds, it will feel nice to get notified about the real-time on-chain payment status.

針對您生態系的需求,打造專屬品牌錢包

建立擁有永久地址的錢包

整合我們的人性化錢包 API,輕鬆建立擁有永久代幣地址的客製化錢包,讓您的客戶享受順暢支付體驗

設定您自己的代幣/法幣清單

客製化您的代幣清單,以滿足您的業務需求,獨家使用您喜歡的代幣,新增您喜歡的幣種到您的錢包系統,加值提領隨手可得

客製化服務費,以增加收益

透過為您自己的錢包系統客製化交易費,以最大化您的收入和利潤,並為您的客戶提供公開透明、無憂無慮的付款體驗

付款方式

結賬時,再也不用擔心客戶流失
payWith.box.description_1

相容 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

我們為誰服務

成熟的企業、新創公司,以及介於兩者之間的所有商家

我們針對所有公司行號提供服務,包含:

  • 諮詢 & 顧問諮詢 & 顧問
  • 進出口貿易進出口貿易
  • 電子商務、零售、分銷電子商務、零售、分銷
  • 製藥、健康、保健製藥、健康、保健
  • 軟體和 App 開發軟體和 App 開發
  • 電信與電子電信與電子
  • 設計和行銷服務設計和行銷服務
  • 線上博奕和博彩線上博奕和博彩
  • 製造業製造業
  • SaaS 公司和新創公司SaaS 公司和新創公司
  • 金融服務金融服務
  • 房地產與建築房地產與建築
  • 物流運輸物流運輸
  • 諮詢 & 顧問諮詢 & 顧問
  • 進出口貿易進出口貿易
  • 電子商務、零售、分銷電子商務、零售、分銷
  • 製藥、健康、保健製藥、健康、保健
  • 軟體和 App 開發軟體和 App 開發
  • 電信與電子電信與電子
  • 設計和行銷服務設計和行銷服務
  • 線上博奕和博彩線上博奕和博彩
  • 製造業製造業
  • SaaS 公司和新創公司SaaS 公司和新創公司
  • 金融服務金融服務
  • 房地產與建築房地產與建築
  • 物流運輸物流運輸

歡迎加入合作夥伴社群

透過我們強大的 API、電子商務、託管支付頁面,可以為企業帶來閃電般快速且低成本的加密支付

step

常見問題

支援哪些加密貨幣呢?

付款方面,支援超過 100 種熱門加密貨幣,包含比特幣、以太幣、狗狗幣、萊特幣、Tether⋯⋯

如何把加密貨幣轉換為法定貨幣?

您將可以在儀表板上隨意點選按鈕,即可用法幣換取加密貨幣

交易費是多少呢?

服務費只有支付金額的 0.3%,低於市面上的其他所有收費平台