Skip to main content
Goal: a “Buy now” / “Pay” button on your page. The payment provider handles checkout, cards, and receipts — Shareable just shows the button.
1

Create a product + link

In Stripe (Payment Links), Gumroad, or Lemon Squeezy, create your product and a checkout link. (Stripe Payment Links need no code at all.)
2

Put the button on your page

Tell your AI “add a ‘Buy now’ button that links to [your link]” — or add it yourself:
<a href="https://buy.stripe.com/XXXX" target="_blank"
   style="display:inline-block;padding:12px 22px;border-radius:9px;
          background:#4f46e5;color:#fff;text-decoration:none;font-weight:600">
  Buy now — $29
</a>
Publish on Shareable; clicking opens the provider’s secure checkout.

Inline checkout

Prefer checkout on the page? Stripe’s Buy Button and Gumroad’s embed give you a snippet (a small script + element) you paste in the same way. Gumroad’s overlay embed keeps buyers on your page entirely.
Never put secret API keys or card-handling code in your page — it’s public HTML. Always use the provider’s hosted link, button, or embed, which keeps payment details on their secure servers.