Developers ship faster here
A great DX isn't a luxury — it's how we keep integration errors out of production.
create-intent.ts
// Create a payment intent — 5 lines
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 }Official SDKsNode.jsPythonGoPHP
Developers ship faster here
A great DX isn't a luxury — it's how we keep integration errors out of production.
Official SDKs
Node · Python · Go · PHP
Full Sandbox
Test all scenarios
Scenario Simulator
3DS, decline, timeout
OpenAPI Spec
Full reference docs
Quick start
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));
"