Fyneri / Docs

Docs that read like prose, not boilerplate.

Everything you need to integrate Fyneri into a Shopify store, a custom React app, or a server-only flow. Five SDKs, one REST API, one webhook signature scheme. No bespoke vocabulary — if you've used Stripe before, you'll feel at home.

API version · v1.0 · GA target Q3 2026 SDKs · Node, Python, Ruby, PHP, Go
01 / Start here

Pick a path.

02 / Try it now

A real payment in eight lines.

Server-side, using the Node SDK. This creates a Checkout Session and returns a hosted URL you redirect the customer to.

// npm install @fyneri/node import Fyneri from '@fyneri/node'; const fyneri = new Fyneri(process.env.FYNERI_SECRET_KEY); const session = await fyneri.checkout.sessions.create({ line_items: [{ price: 'price_basic_monthly', quantity: 1 }], success_url: 'https://store.com/thanks', cancel_url: 'https://store.com/cart', }); res.redirect(session.url);

Under the hood Fyneri creates a Stripe Checkout Session on your connected Stripe account, layers our analytics/automation hooks on top, and returns a single URL. Your Stripe Dashboard remains the source of truth for the underlying transaction.

03 / SDKs

Five languages. One shape.

Node.jsv0.9.2 · npm
Pythonv0.9.0 · PyPI
Rubyv0.8.4 · gem
PHPv0.8.1 · Composer
Gov0.7.3 · go get
Reactv0.6.0 · npm

All SDKs are MIT-licensed and open-source. Beta status until v1.0 GA — breaking changes will be called out in the changelog with at least 30 days notice.

04 / API reference

REST + webhooks.