Beautiful, mobile-first checkout page with your branding. One link, copy-paste ready.
Create a session, charge a card, refund, manage subs. The API fits on one page.
Full support for EUR, RON, and 20+ currencies. Local card schemes work out of the box.
We never touch raw card data. You skip the audit.
Monthly, yearly, custom intervals. Smart retries and dunning.
Signed payloads, automatic retries, full delivery log in your dashboard.
Charge cards in 6 lines of code. No SDK required.
POST /v1/checkout-sessionsPOST /v1/refundsGET /v1/transactionsPOST /v1/subscriptions/:id/cancelfetch("https://api.payvera.ro/v1/checkout-sessions", {
method: "POST",
headers: { Authorization: "Bearer sk_live_..." },
body: JSON.stringify({
amount: 2999,
currency: "EUR",
success_url: "https://your.app/ok"
})
})