India‑wide fintech APIs & enterprise software. Plug in UPI, BBPS, AEPS, DMT, payouts, KYC, recharges & more with battle‑tested APIs and a modern admin.
Clean APIs, robust webhooks, observability, and a beautiful ops console.
Mix and match modules to fit your business.
Use our REST APIs with HMAC signatures. Here’s a Node.js example to create a payout.
const crypto = require('crypto');
const axios = require('axios');
function sign(payload, secret) {
const body = JSON.stringify(payload);
const hmac = crypto.createHmac('sha256', secret).update(body).digest('hex');
return { body, signature: hmac };
}
async function createPayout() {
const payload = {
amount: 5000,
currency: 'INR',
to: { ifsc: 'HDFC0001234', account: '012345678901' },
reference: 'INV-4021',
};
const { body, signature } = sign(payload, process.env.FS_SECRET);
const res = await axios.post('https://api.example.com/v1/payouts', body, {
headers: { 'x-api-key': process.env.FS_KEY, 'x-signature': signature, 'content-type': 'application/json' },
timeout: 10_000,
});
console.log(res.data);
}
createPayout().catch(console.error);
“Setup was insanely quick. The console is the best I’ve used.”
“We went live with BBPS + payouts in weeks, not months.”
“Great docs and webhooks. Our ops team loves the visibility.”
Book a demo or jump into the console. No sales calls required to start.