For the complete documentation index, see llms.txt. This page is also available as Markdown.

Build. Integrate. Scale.

Developer-first APIs for payments, payouts & banking automation.

GitBook Assistant

Cover

Payment Gateway

Accept and process online payments seamlessly.

Cover

Payout API

Transfer funds instantly to bank accounts & UPI.

Cover

Banking APIs

Build fintech products with powerful banking infrastructure.

Get Started with KwikPaisa

Launch payments, payouts, and banking APIs in minutes.

Create your account, generate API keys, and make your first live API request using simple integration examples for every major tech stack.

life-ring

With your first integration complete, explore our API guides and references to build payments, payouts, and banking workflows with KwikPaisa.

Get started API reference

1

Create Your Merchant Account

Sign up and generate your API credentials to start integrating KwikPaisa APIs.

Sign upLog in

2

Make Your First API Request

Connect with KwikPaisa APIs using secure authentication and signature-based requests.

Endpoint:
POST {baseUrl}/api/v3/pg/order/create
const crypto = require('crypto');
const payload = {
  amount: "100.00",
  order_id: "ORD123456"
};
const timestamp = Math.floor(Date.now() / 1000);
const signature = crypto
  .createHmac('sha256', 'YOUR_SECRET_KEY')
  .update(JSON.stringify(payload) + timestamp)
  .digest('hex');
console.log(signature);
3

Parse the Response

If the request is successful, KwikPaisa APIs return a response like this:

response.json
{
  "code": "200",
  "status": "success",
  "message": "API authentication successful!",
  "return_data": {
    "kwikX_order_id": "kp_40dec464-7155-43a3-855d-c95c5ab1be71",
    "created_at": "13-05-2026 08:34 AM",
    "order_id": 3501946751751,
    "order_status": "UN_PAID",
    "payment_link": "http://orchestration.localhost/payment/sandbox/pay_TSN7ASUDmzcZNyH8qLeG8PrR4CWB9pwFQOuDPYia0fd5k2fMzN"
  }
}

Explore the KwikPaisa Developer Platform

Access integration guides, API references, webhook documentation, and SDK examples to build secure payment and banking experiences with KwikPaisa.

API Guides API Reference

Need Integration Support?

Get help with API integration, webhooks, payouts, and onboarding from the KwikPaisa technical team.

Contact SupportAPI Status