Entwickler liefern hier schneller
Eine gute DX hält Integrationsfehler aus der Produktion heraus.
create-intent.ts
// Payment Intent erstellen — 5 Zeilen
const intent = await lunixi.intents.create({
amount: 4500,
currency: "TRY",
merchantId: "m_01HTXK",
metadata: { orderId: "ord_123" },
})
// → { id: "pi_01HTXK...", status: "ROUTED",
// route: "GARANTI", score: 0.89 }Offizielle SDKsNode.jsPythonGoPHP
Entwickler liefern hier schneller
Eine gute DX hält Integrationsfehler aus der Produktion heraus.
Offizielle SDKs
Node · Python · Go · PHP
Vollständige Sandbox
Test all scenarios
Szenario-Simulator
3DS, decline, timeout
OpenAPI Spec
Full reference docs
Schnellstart
Terminal
# Install SDK
npm install @lunixi/node
# Set your API key
export LUNIXI_API_KEY=sk_test_...
# Create your first payment intent
node -e "
const Lunixi = require('@lunixi/node');
const pf = new Lunixi(process.env.LUNIXI_API_KEY);
pf.intents.create({ amount: 1000, currency: 'TRY' })
.then(i => console.log(i.id, i.status));
"