> ## Documentation Index
> Fetch the complete documentation index at: https://docs.taberna.io/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Taberna is a crypto payments API. Amounts are priced in fiat (USD or EUR) and paid in crypto.
> Fiat amounts are ALWAYS decimal strings ("9.99"), never numbers. Crypto amounts are integer strings in the asset's smallest unit.
> Authenticate merchant endpoints with `Authorization: Bearer tbrn_live_...`. Every key is bound to one store and carries an explicit scope set, so never pass a store id to a /v1 endpoint.
> A 401 means the credential is bad; a 403 means the key lacks a scope. Never retry or re-authenticate on a 403 — surface it as a configuration error.
> The /v1/checkouts endpoints are deliberately unauthenticated and run in the buyer's browser. Never send an API key to a browser.
> Verify webhook signatures over the RAW request body before parsing JSON, and treat delivery as at-least-once: handlers must be idempotent.
> Never grant value based on a browser redirect to successUrl. Fulfil on a signature-verified webhook, or on a server-side read of GET /v1/orders/{id} or GET /v1/invoices/{id}.
> There is no test mode: every payment method is a live chain moving real funds.
> A merchant can run an entire shop with no code: the dashboard creates products and invoices, and every store can host a storefront at {slug}.taberna.io with its own theme, sections, branding and optional custom domain. Never assume the reader has an API integration.
> Taberna issues no refunds and performs no KYC. A refund is something the merchant sends from their own payout wallet, off-platform.

# What Taberna does not do

> The limits, stated plainly, so none of them are a surprise later.

Everything here is true today. None of it is hidden in a settings screen you have not
found.

## There is no test mode

<Warning>
  Every payment method is a live network moving real money. There is no sandbox, no
  test keys and no fake coins. If you want to try a purchase end to end, buy something
  cheap from your own shop with your own wallet.
</Warning>

## There are no refunds

Taberna cannot return money to a customer. Payments settle to your own wallet, so if you
want to refund someone you send it back from that wallet yourself, on your own terms.

This includes underpayments. If a customer sends too little and the window closes, the
order is marked **partial**, the money is still forwarded to you, and nothing is returned
automatically.

## There are no chargebacks either

The same permanence works in your favour. Nobody can reverse a payment you have received,
and there are no dispute fees. See [Crypto basics](/guides/crypto-basics).

## Other things worth knowing

|                                            |                                                                                                                                            |
| ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
| **No KYC**                                 | No identity checks, no company documents. Sign up and sell.                                                                                |
| **No order search or export**              | The orders list filters by status and pages through. There is no search box, no date filter and no CSV download anywhere in the dashboard. |
| **No subscriptions**                       | One product type: a one-off purchase. No recurring billing, no variants, no discount codes.                                                |
| **No physical goods**                      | No shipping addresses, no postage, no delivery tracking. Digital only.                                                                     |
| **Two pricing currencies**                 | USD and EUR. Your customers pay in crypto either way.                                                                                      |
| **Your fee is not shown in the dashboard** | The standard rate is 3%. [Fees](/guides/fees) is the only place it is written down.                                                        |
| **Products are created in the dashboard**  | The API can read products and top up stock, but not create or edit them.                                                                   |
| **One webhook address per store**          | Developers get a single URL, receiving every event type — there is no way to add a second or subscribe to a subset.                        |
| **No password reset**                      | There is no self-service way to change or reset your dashboard password. Email support.                                                    |

## Things a customer cannot do

* Pay with a card, a bank transfer, PayPal or Apple Pay. Crypto only.
* Pay part now and part later. Underpaying is not a payment plan.
* Get a refund from Taberna. They have to come to you.

## What to read next

<CardGroup cols={2}>
  <Card title="FAQ" icon="circle-question" href="/guides/faq">
    The questions these limits usually raise.
  </Card>

  <Card title="Getting help" icon="life-ring" href="/guides/getting-help">
    Where to write, and what to include.
  </Card>
</CardGroup>
