Private beta coming soon

Accept crypto payments for your business

Build a customizable storefront in minutes, or integrate directly with our API. Accept any crypto, convert to stablecoins, and cash out to your bank.

SolanaSolana
EthereumEthereum
BaseBase
PolygonPolygon
BNBBNB

Everything you need to sell online

From storefront to bank account, we handle the crypto complexity so you can focus on your business.

Customizable Storefronts

Create your online store in minutes. Customize your branding, add products, and start selling—no coding required.

Full API Access

For developers who want full control. Integrate payments directly into your website or app with our API.

Accept Any Token

Your customers pay with whatever crypto they have. We support tokens across Solana, Ethereum, Base, Polygon, and BNB.

Convert to Stablecoins

Worried about price swings? Enable auto-convert and receive stablecoins instead of volatile tokens.

Easy Offramp

Cash out to your bank whenever you want. No complicated exchanges or waiting periods.

Global Marketplace

List your products in our marketplace and reach crypto-native customers around the world.

Get started in minutes

01

Create your store

Sign up and add your products. Your store is ready in minutes.

02

Connect your wallet

Link your wallet to receive payments. We auto-convert to stablecoins.

03

Get paid

Customers pay in any token. Cash out to your bank anytime.

Developer API

Want full control?

Skip the storefront and integrate payments directly into your website or app. Same features, your design.

Simple API

Clean RESTful design

Webhooks

Real-time payment notifications

SDKs

TypeScript, Python, Go, and more

Secure

Enterprise-grade security

payment.ts
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;