Developer Portal
Build with 1x Rupee
Integrate 1x Rupee into your application. Find API documentation, SDKs, and everything you need to ship payments at scale.
JavaScriptAndroidiOSNode.jsReactPythonPHPGo
Developer resources
Everything you need to integrate and go live.
// Initialize 1x Rupee SDK
const rupee = await OneXRupee.init({ apiKey: 'pk_live_xxx' });
// Create a payment session
const session = await rupee.payments.create({
amount: 50000, // ₹500.00 (in paise)
currency: 'INR',
customerId: 'cust_123',
});
// Redirect to checkout or embed HyperCheckout
window.location.href = session.checkoutUrl;Full API reference