Accept Crypto Buttons | AlbaPay Infrastructure
No Code Integration

Instant
Crypto Buttons

Turn any static HTML page into a global storefront. Generate custom payment or donation buttons in seconds without writing a single line of backend code. Copy, paste, and start accepting Bitcoin, Ethereum, and USDT immediately.

Pure HTML
Works on WordPress

E-Book: Mastery

Fixed Price: $24.99

Open Source Project

Support our developers

$10$100
Developer struggling with code

Don't over-engineer Simple Sales

If you're just trying to sell a single PDF, a consulting hour, or take donations for your blog, setting up a full e-commerce backend with databases, webhooks, and REST API controllers is massive overkill.

Traditionally, creators resorted to pasting naked Bitcoin wallet addresses on their sites. This causes terrible user experience, zero purchase tracking, and makes it impossible to know *who* sent *what* amount.

"I just wanted to sell my UI Kit template for $15 in crypto without paying Shopify $30/month. I generated a AlbaPay button, pasted the HTML into my Webflow site, and was making sales 5 minutes later."

— Indie Maker & Designer

Create in 3 Steps

From idea to live checkout faster than you can brew coffee.

1

Configure in Dashboard

Set the button type (Fixed Price, Slider, or User Input). Enter the item title, description, and the fiat price you want to peg the checkout to (e.g., $50).

2

Design & Customize

Use our visual builder to pick the button shape, color, icon, and text. The HTML snippet updates in real-time as you tweak the design.

Button Features

Small footprint, massive capability.

Dynamic Price Pegging

Set your button price in USD or EUR. When a user clicks, we automatically calculate the exact realtime amount of Bitcoin or USDT required, protecting you from volatility.

Post-Payment Callbacks

Configure a "Success URL" in your button settings. Once the crypto transaction confirms, we automatically redirect the buyer to your secret download page or thank-you page.

Information Collection

Need their shipping address or email? You can configure the button's checkout flow to prompt the user for specific data fields before displaying the crypto payment QR code.

Auto Bank Settlement

Don't want to deal with crypto wallets? Connect your bank account. Users pay via the button in Bitcoin, and we deposit Euros or Pounds directly into your SEPA-enabled bank.

Order Tracking IDs

You can pass a custom `order_id` in the button's HTML data attributes. When a payment completes, you'll easily be able to cross-reference the sale in your dashboard.

Spam Protection

Our hosted checkout pages triggered by the buttons include built-in rate limiting and anti-bot protection to ensure malicious actors can't spam your checkout flows.

Blogger accepting donations

Who uses Payment Buttons?

  • Content Creators & Bloggers

    Add a "Support my work" button to the footer of your blog. Let fans donate $5, $10, or $50 in Ethereum directly to your wallet without Patreon taking a 12% cut.

  • Selling Digital Goods

    Selling an e-book, a notion template, or an indie game? Slap a fixed-price $20 button on your landing page. Redirect them to the hidden Google Drive link on success.

The HTML Snippet

See how simple the underlying code actually is.

index.html
<!-- A basic fixed-price purchase button -->
<form action="https://pay.AlbaPay.com/pay" method="POST">
  <!-- Your secure merchant ID -->
  <input type="hidden" name="merchant_id" value="9012">
  
  <!-- Product details -->
  <input type="hidden" name="item_name" value="Premium E-Book">
  <input type="hidden" name="price_amount" value="25.00">
  <input type="hidden" name="price_currency" value="USD">
  
  <!-- Redirect user here after payment -->
  <input type="hidden" name="success_url" value="https://mysite.com/download">

  <!-- The styled button -->
  <button type="submit" style="background:#3b82f6; color:white; padding:10px 20px; border-radius:5px;">
    Pay with Crypto
  </button>
</form>

Button FAQs

Can people manipulate the hidden HTML price?

If you are using basic HTML buttons, technically yes, a savvy user could edit the DOM to alter the price parameter before clicking. If you are selling high-value digital goods, you should turn on `Force verification` in your button settings. This signs the HTML payload cryptographically so any tampering is immediately rejected by our backend.

Does the button work on WordPress or Wix?

Yes. Because it strictly relies on standard HTML forms and links, it operates perfectly on essentially any CMS builder that allows you to embed custom HTML blocks (WordPress, Wix, Squarespace, Webflow, Shopify Pages).