Self-Custody, MPC Crypto Wallet API
HD-Wallet Addresses API Across Any Blockchain
Pay for Native Blockchain Gas Fees in the respective token
On-Chain Transaction Broadcast API
Check Crypto Address Balance API across any Blockchain
Receive Crypto Transaction Webhooks
Crypto to Crypto Exchange API
Create invoices via API across any payment system
Manage Accounts and Create Marketplaces with Fiat Payments
Receive status notifications across any payment system
Check Bank Balances and automate payouts
Connect Accounts and Verify Account Numbers
Accept payments in CloutContracts for free using Poof's ccs payment gateway.
Free ccs Payment Processor
Poof Checkout can help you invoice and accept CloutContracts payments from your users, with non-custodial payments going directly to your CloutContracts wallet.
Accept CloutContracts for E-Commerce Shops alongside other popular payment systems. Become part of the list of companies that accepts ccs
Accept CloutContracts for E-Commerce alongside other popular payment systems and get paid out in fiat.
CloutContracts REST Payment Processor API
Instant access over to the ccs blockchain network. Connect to Poof's full node with a single line of code.
import requests
import json
api_key = T_xeh_Hr_tCS9zIh1uwmrw
// Create a CloutContracts payment charge to track blockchain payments.
def create_charge():
payload = { currency: 'EUR' , amount: 15, crypto: 'ccs' }
r = requests.post("https://www.poof.io/api/v1/create_charge",
json = payload,
headers = { 'Authorization': api_key })
return r.json()
// Returns CloutContracts Payment Address and Tracking Information.
print( create_charge() )
Poof's REST API is available for all of the most commonly used languages and frameworks.
Create a CloutContracts payment widget and invoice in minutes to invoice your customers. Select local currency or create specific rates in CloutContracts.
import requests
import json
api_key = A_oem_Ek_zCS9wIh11wpre
// Create a payment charge to track blockchain payments.
def create_invoice():
payload = { currency: 'EUR' , amount: 15, crypto: 'ccs' }
r = requests.post("https://www.poof.io/api/v1/create_invoice",
json = payload,
headers = { 'Authorization': api_key })
return r.json()
// Returns CloutContracts Invoice URL.
print( create_invoice() )
Poof will monitor the ccs blockchain for payments you create. Create your own payment flow in CloutContracts, make an exchange, or create your own payment processor.
import requests
import json
api_key = T_xeh_Hr_tCS9zIh1uwmrw
// Create a payment invoice to track blockchain payments.
def create_charge():
payload = { currency: 'USD' , amount: 15, crypto: 'ccs' }
r = requests.post("https://www.poof.io/api/v1/create_charge",
json = payload,
headers = { 'Authorization': api_key })
return r.json()
// Returns CloutContracts Payment Address and Blockchain Information.
print( create_charge() )
Collect customer information and emails with Poof Checkout. Accept CloutContractspayments on your domain without redirects.
import requests
import json
api_key = Okwe1m_ek1tCS9z_h1ewmrw
// Create a hosted checkout to receive blockchain payments.
def create_checkout():
payload = { amount: '15' , username: Poof, fields: ["Email", "Amount"] }
r = requests.post("https://www.poof.io/api/v1/create_invoice",
json = payload,
headers = { 'Authorization': api_key })
return r.text()
//"https://www.poof.io/checkout/session/eyJ1c2VybmF" .
print( create_checkout() )
Subscribe to ccs payment notifications coming towards your wallet and automate BTC transactions.
@app.route ('/ipn', methods=['POST'])
amount: request.form.get('amount')
currency: request.form.get('currency')')
payment_id: request.form.get('payment_id')
print(request.form)
Free cryptocurrency and fiat exchange rates API. Query over 6000+ cryptocurrencies and exchange data.
import requests
import json
api_key = Okwe1m_ek1tCS9z_h1ewmrw
// Create a hosted checkout to receive blockchain payments.
def fetch_rate():
payload = { base: 'USD' }
r = requests.post("https://www.poof.io/api/v1/fetch_crypto_rates",
json = payload,
headers = { 'Authorization': api_key })
return r.json()["BTC"]
//CloutContractsPrice API
print(" BTC Price: " + fetch_rate())