Secure Manual Payout APIvia IMPS Bank Transfer

High-security payment infrastructure with bearer token authentication, real-time callbacks, and complete transaction control.

Multi-Layer Security
Bearer token + Secret key + App ID verification for maximum protection
Real-time Callbacks
Instant webhook notifications for every transaction status change
Manual Approval
Admin verification system ensures complete control over payouts
IMPS Transfer
Fast and reliable bank transfers with complete transaction history
Quick Integration
Simple API call to create a payout request
fetch('https://api.yoursite.com/api/payout/create', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_TOKEN',
    'X-App-ID': 'YOUR_APP_ID',
    'X-Secret-Key': 'YOUR_SECRET_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    bankAccountName: "John Doe",
    bankAccountNumber: "1234567890",
    ifscCode: "SBIN0001234",
    amount: 5000,
    callbackUrl: "https://yoursite.com/callback"
  })
})