Build a customizable storefront in minutes, or integrate directly with our API. Accept any crypto, convert to stablecoins, and cash out to your bank.
Solana
Ethereum
Base
Polygon
BNBFrom storefront to bank account, we handle the crypto complexity so you can focus on your business.
Create your online store in minutes. Customize your branding, add products, and start selling—no coding required.
For developers who want full control. Integrate payments directly into your website or app with our API.
Your customers pay with whatever crypto they have. We support tokens across Solana, Ethereum, Base, Polygon, and BNB.
Worried about price swings? Enable auto-convert and receive stablecoins instead of volatile tokens.
Cash out to your bank whenever you want. No complicated exchanges or waiting periods.
List your products in our marketplace and reach crypto-native customers around the world.
Sign up and add your products. Your store is ready in minutes.
Link your wallet to receive payments. We auto-convert to stablecoins.
Customers pay in any token. Cash out to your bank anytime.
Skip the storefront and integrate payments directly into your website or app. Same features, your design.
Clean RESTful design
Real-time payment notifications
TypeScript, Python, Go, and more
Enterprise-grade security
import { Taberna } from '@taberna/sdk';
const taberna = new Taberna({
apiKey: process.env.TABERNA_KEY,
});
// Create a payment link
const payment = await taberna.payments.create({
amount: 99.99,
currency: "USDC",
description: "Premium Plan",
});
// Redirect to checkout
window.location.href = payment.checkoutUrl;