ccpayment.com Open in urlscan Pro
18.238.55.80  Public Scan

URL: https://ccpayment.com/
Submission: On July 13 via api from US — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

 * Products
   
     
   
   * Payment API
     
     Fast integration through API
   
   * Wallet API
     
     Build a customised crypto wallet for your ecosystem
   
   * Buy & Sell
     
     Exchange between crypto & fiats
   
   * Swap
     
     Easily Swap 100+ tokens
   
   * Invoicing
     
     Manage your bill with all-in-one format
   
   * Cwallet
     
     Custodial & Non-Custodial Combined Crypto Wallet

 * Solutions
   
     
   
   * eCommerce
     
     
   
   * iGaming
     
     
   
   * Faucet
     
     
   
   * Forex Broker
     
     

 * Developers
   
     
   
   * Payment API
     
     
   
   * Withdrawal API
     
     
   
   * Wallet API
     
     

 * Resources
   
     
   
   * About Us
     
     
   
   * Referral Program
     
     
   
   * Blog
     
     
   
   * Careers
     
     
   
   * Support
     
     
   
   * FAQ
     
     

 * Fees

 * Crypto Directory

 * Demo

 * English
 * Deutsch
 * Española
 * Bahasa Indonesia
 * 简体中文
 * Tiếng Việt
 * မြန်မာ
 * Français
 * বাংলা
 * Türk
 * Русский
 * Polski
 * Українська
 * پاکستان
 * Tagalog
 * 繁體中文
 * عربي
 * Português
 * Melayu
 * हिंदी
 * Dutch
 * नेपाली
 * 한국인
 * Italiana
 * 日本語

Become a PartnerLog in


CRYPTO PAYMENTSSOLUTION FOR GROWTH OF BUSINESS

Accepting 100+ crypto with the lowest fee on the market, only 0.3%

Get Started



 * INSTANT SETTLEMENT
   
   CCPayment enables real-time settlement, allowing merchants greater liquidity
   of funds


 * EASY SETUP
   
   We provide payment buttons and a hosted checkout through a quick integration
   with platform plug-ins or APIs


 * GO GLOBAL
   
   Accept Bitcoin payments from anywhere with CCPayment’s powerful API


 * AUTOMATIC WITHDRAWAL
   
   CCPayment supports automatic transfer to specified wallets immediately upon
   receival

Click to have an instant chat with sales.
Contact Us

LOWEST SERVICE FEE ON MARKET

Free and open source APIs. Only 0.3% of the payment amount is charged as a
service fee, which is lower than that charged by any other platform on the
market.

Get Started

Lightening-Fast
Get transaction notifications
in a few seconds
It will feel nice to get notified about the real-time on-chain payment status


CREATE A BRANDED WALLET TAILORED TO YOUR ECOSYSTEM NEEDS

CREATE WALLETS WITH PERMANENT ADDRESSES

Integrate with our user-friendly Wallet API to effortlessly create customised
wallets with permanent token addresses, enabling your users to enjoy a seamless
payment experience

CONFIGURE YOUR OWN TOKEN/COIN LIST

Tailor your token list to suit your business needs. Customize with your
preferred tokens. Add the coins you like to your wallet system Enable deposit
and withdrawal at your fingertip

CUSTOMISE SERVICE FEES TO BOOST REVENUE

Maximise your revenue and profits by customising the transaction fee for your
own wallet system. And offer your users a transparent and hassle-free payment
experience

Get Started


PAY WITHTETHER|

Never have to worry about customer loss when checking out.

Compatible with 70+ WalletsOffering unrestricted access to your business to your
customers on the market.



CCPayment supports80+ Countries and offers a unified API for cryptocurrency
payment


TRUSTED BY THOUSANDS OF PARTNERS


Easy Setup


DEVELOPER-FRIENDLY PAYMENT PROCESSING

We offer one of the best APIs on the market with full integration support via a
dedicated manager. Using CCpayment’s developer platform means less maintenance
for legacy systems and more focus on customer and product experiences.

Get Started
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"
  })
}
    

Protect Your Business


DATA & ASSETS SECURITY ENSURED

 * Adopt NIST Data Encryption Standards to Prevent Data tempering

 * Protect Account Assets with Double Key Encryption

 * Double-encryption & Multi-authentications

Get Started


WHO WE SERVE

Established businesses, brand-new startups, and everything in between.

We serve all companies and industries including:

 * Consulting & Advisory
 * Import, Export & Trade
 * eCommerce, Retail & Distribution
 * Pharma, Health & Wellness
 * Software & App development
 * Telecom & Electronics
 * Design & Marketing services
 * iGaming & Betting
 * Manufacturing
 * SaaS companies & Startups
 * Financial services
 * Real estate & Construction
 * Transportation

 * Consulting & Advisory
 * Import, Export & Trade
 * eCommerce, Retail & Distribution
 * Pharma, Health & Wellness
 * Software & App development
 * Telecom & Electronics
 * Design & Marketing services
 * iGaming & Betting
 * Manufacturing
 * SaaS companies & Startups
 * Financial services
 * Real estate & Construction
 * Transportation


JOIN OUR PARTNER COMMUNITY

Get lightning-fast, low-cost crypto payments and payouts for your business with
our powerful API, eCommerce, or hosted payment pages.

Become a Partner



FREQUENTLY ASKED QUESTIONS


WHICH CRYPTOCURRENCIES ARE SUPPORTED?


Over 100 trending cryptocurrencies are supported for payment, including Bitcoin,
Ethereum, Dogecoin, Litecoin, Tether...


HOW DO I CONVERT CRYPTOCURRENCY INTO FIAT CURRENCY?


You are able to exchange crypto to fiat currency on the dashboard in just a few
clicks.


HOW MUCH ARE THE TRANSACTION FEES?


Only 0.3% of the payment amount is charged as a service fee, which is lower than
that charged by any other platform on the market.

CCPayment is a cutting-edge cryptocurrency payment solution designed to
revolutionize the finance and payments industry. With a focus on modernizing the
payment process, CCPayment provides businesses with a seamless, secure, and
efficient payment experience.

 * 
 * 
 * 
 * 
 * 

Products

 * Online Crypto Payments
 * Buy & Sell (coming soon)
 * Exchange
 * Invoicing
 * Cwallet

Solutions

 * Ecommerce
 * Online Gaming
 * Forex Broker

Resources

 * Documentation
 * Contact Us
 * About Us
 * Blog
 * Careers
 * Support
 * FAQ

 * Privacy Policy
 * Terms of Use

Copyright © 2024 CCPayment.

CCPayment Services are provided by UAB "Amonra" (Reg.No.306133544), with address
at Vilnius, Architektų g. 56-101, LT-04111.

Amonra UAB has been granted a Virtual Asset Service Provider (VASP) registration
by the Registry of Legal Entities of the Republic of Lithuania and local
Financial Intelligence Unit (FIU).

The registration enables Amonra UAB to provide crypto asset exchange and custody
services.

Hash AI Technology Limited
address: Unit 321B, Building 1W, Hong Kong Science Park
Certificate No.
72625632-000-02-23-7