Developer Portal
Build with PayHunt
Integrate PayHunt 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 PayHunt SDK
const payhunt = await PayHunt.init({ apiKey: 'pk_live_xxx' });
// Create a payment session
const session = await payhunt.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