Integrations
Choose the integration path that fits your team's technical maturity and business needs, then evolve without rework.
TX Fabric is designed to minimise integration effort. Start with two lines of code, or go deep with full API access. It's your choice.
The hosted cashier can be live with minimal code. You'll be up and running in hours.
Connect any provider or payment method. Configure with ease through the platform dashboard.
Smarter UX, better routing, higher conversion. Watch your metrics climb with every optimisation.
Fastest path to live
Redirect users to TX Fabric's managed cashier page. No frontend build required, just create a session and redirect.
// Create session -> redirect
const session = await txfabric.sessions.create({
amount: 5000,
currency: "EUR",
type: "deposit",
});
window.location.href = session.redirect_url;In-app experience
Embed the cashier directly inside your application using our JavaScript SDK for a seamless, branded payment experience.
import { TXFabricCashier } from "@txfabric/sdk";
const cashier = new TXFabricCashier({
containerId: "payment-container",
merchantId: "your-merchant-id",
});
cashier.mount(sessionToken, {
theme: { primaryColor: "#2bbcb3" },
onComplete: (result) => handleResult(result),
});Full control
Complete API access for teams that want full control over the payment flow, routing logic, and custom UI presentation.
// Direct API - full control
const tx = await fetch("/v1/transactions", {
method: "POST",
headers: { Authorization: "Bearer sk_live_..." },
body: JSON.stringify({
amount: 5000,
currency: "EUR",
method: "card",
card: { token: cardToken },
}),
});Webhooks & Callbacks
TX Fabric sends webhook notifications for every transaction state change. Build reliable, event-driven payment flows.
Receive real-time notifications for transaction completions, failures, and status changes.
Every webhook includes a cryptographic signature for secure verification.
Automatic retries with exponential backoff ensure delivery reliability.
Inspect, replay, and debug webhook deliveries through the sandbox dashboard.
Onboarding Support
TX Fabric supports you at every stage, from initial sandbox setup to production go-live and beyond. Our team works alongside yours to ensure a smooth integration.
Hosted cashier, live in hours with minimal code
Web SDK, in-app cashier with full brand control
Server-to-server API, complete payment control
Explore the developer documentation, spin up a sandbox, or talk to our team about the best integration path for your business.