CITRALINE

EASY MONETISATION

(WIP DEMO WEBSITE)

No signup, no chargebacks,
no transfer limit

Pay as you go: 0.5% + $0.20 USD (+ blockchain fees)

Get started!

Creatives (no code):

Use a personal link:

Or integrate one of our ready-made components

Don't worry, we've got you covered. Check out our dozens of plugins for any blog, website or app you use

Cart

Paying $1 worth for:

  • Item something or rather x 1 $1
Select currency
Payment

Powered by Citraline

Developers:

Creating a multi-chain wallet:

// No account required!!
const payload = {
    currencies: ["BTC","ETH"],
    forward_address: "3D1P1efiP5Q2DMTzGefTL5PSLmv7...",
    forward_currency: "BTC"
};
const { 
    wallets, 
    api_key 
} = await fetch("https://api.citraline.com/1.0/wallet/create", {
    method: "POST", 
    body: JSON.stringify(payload)
});

Getting wallet balances:

const { 
    balances 
} = await fetch("https://api.citraline.com/1.0/wallet/get_balance", {
    headers: {
        'Authorization': 'Bearer ' + api_key,
    } 
});