Lunixi

Geliştiriciler burada daha hızlı ship eder

İyi bir DX lüks değildir — entegrasyon hatalarını üretimden uzak tutmanın yoludur.

create-intent.ts

// Ödeme intent oluştur — 5 satır

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 }
Resmi SDK'larNode.jsPythonGoPHP

Geliştiriciler burada daha hızlı ship eder

İyi bir DX lüks değildir — entegrasyon hatalarını üretimden uzak tutmanın yoludur.

Resmi SDK'lar
Node · Python · Go · PHP
Tam Sandbox
Test all scenarios
Senaryo Simülatörü
3DS, decline, timeout
OpenAPI Spec
Full reference docs
Dokümantasyonu İncele

Hızlı başlangıç

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));
"
Geliştirici Merkezi — Lunixi