Skip to main content
AI-Powered Financial Infrastructure Global Payments Secure & Trusted
24×7 Support

AI-Powered Financial InfrastructureGlobal PaymentsSecure & Trusted

Developers · Payout APIs

Payout APIs: send money from your own systems — exactly once.

Pay vendors, staff, sellers and partners to a bank account or UPI ID with a single call, follow every payout by webhook, and retry safely with an idempotency key.

  • Bank accounts
  • UPI IDs
  • Single or bulk
  • Idempotent
A payout with an idempotency key
$payout = $client->payouts->create([
    'beneficiary_id' => 'bene_3Kd91',
    'amount'         => 250000, // in paise
    'mode'           => 'upi',
], [
    'idempotency_key' => 'payout-run-2026-08-29-0417',
]);

echo $payout->status;
curl https://api.paynancial.com/v1/payouts \
  -u YOUR_API_KEY: \
  -H "Idempotency-Key: payout-run-2026-08-29-0417" \
  -d beneficiary_id=bene_3Kd91 \
  -d amount=250000 \
  -d mode=upi
The request

POST /payouts, in three parameters.

Send money to a beneficiary's bank account or UPI ID.

Payout parameters
ParameterMeaning
beneficiary_idThe beneficiary receiving the funds
amountAmount in paise — 250000 is ₹2,500.00
modeTransfer mode; the published example uses upi. Bank transfer is also supported.

A payout object; the examples read its status. The idempotency key travels as an Idempotency-Key header in cURL, or as an option in the SDK. For parameters beyond the published example, ask developer support.

Payout lifecycle

From beneficiary to payout report.

  1. 01
    Save the beneficiary

    Store the recipient's bank account or UPI ID once, and reuse its beneficiary id.

  2. 02
    Create the payout

    Call the Payout API with the beneficiary, the amount in paise, the mode and an idempotency key.

  3. 03
    Read the status

    The response carries the payout's status; it moves from initiated to completed.

  4. 04
    Handle the webhook

    A payout event arrives as the status changes — mark the vendor, employee or partner as paid here.

  5. 05
    Report

    Completed payouts appear in your payout report for reconciliation.

Idempotency

Why every payout needs a key.

A payout that times out might have gone through. Without a key, retrying could pay twice; with the same key, the retry returns the original payout instead.

Make the key deterministic
Build it from your own run and beneficiary — for example payout-run-2026-08-29-0417 — so a re-run produces the same key.
One key per payout
Never reuse a key for a different payout; it identifies exactly one transfer.
The Idempotency-Key header
curl https://api.paynancial.com/v1/payouts \
  -u YOUR_API_KEY: \
  -H "Idempotency-Key: payout-run-2026-08-29-0417" \
  -d beneficiary_id=bene_3Kd91 \
  -d amount=250000 \
  -d mode=upi
Errors

What to do when a payout is refused.

Errors come back with a structured code, so your code can decide what to do without parsing text.

Payout error codes
CodeMeansWhat to do
insufficient_fundsThe balance available is not enough for the requested payout or refund.Do not retry automatically; top up or reduce the amount, then try again.
invalid_methodThe payment method or mode in the request is not valid for this call.Correct the request. Retrying the same request will fail the same way.
rate_limitedToo many requests in a short period.Back off and retry later with the same idempotency key.
Bulk

Paying many beneficiaries at once.

Payouts supports bulk: a batch of transfers submitted in a single request, with every payout in the batch tracked individually and a clear reason for any that fail. The published example shows a single payout; ask developer support for the batch request format.

Whether you send one request per payout or a batch, give each payout its own idempotency key, and handle failures payout by payout — the rest of the batch has already moved. See Bulk Payouts.

In India

Paying out in India.

General information only. Not legal, tax, financial or regulatory advice.

UPI or bank transfer
Set mode to upi to pay a UPI ID; bank transfer to an account is also supported.
Amounts in paise
250000 is ₹2,500.00. Convert once, at the edge of your system.
Tax is yours to calculate
Payouts to vendors, contractors and sellers can attract TDS. Paynancial does not calculate or deduct it — send the net amount your CA agrees.
Check the beneficiary
Verify a new beneficiary's details before sending a large first payout; a payout to the wrong account is hard to recover.
Compliance in India

The RBI and NPCI rules around paying out in India.

A plain-language guide to the frameworks that may apply. General information only. Not legal, tax, financial or regulatory advice. It is not a statement of Paynancial's own licences or authorisations.

Act of Parliament · RBI

Payment and Settlement Systems Act, 2007

The law under which the Reserve Bank of India regulates and supervises payment systems in India, including the authorisation of payment system operators. Businesses should consider the applicable requirements under this Act.

NPCI

Immediate Payment Service (IMPS)

NPCI's round-the-clock instant interbank transfer service, to a bank account or mobile number.

NPCI

UPI procedural guidelines and circulars

NPCI operates UPI and sets its rules for member banks, UPI apps and other participants through procedural guidelines and circulars, including transaction limits, dispute handling and security requirements.

NPCI

National Automated Clearing House (NACH)

NPCI's system for high-volume, repetitive bank transfers — bulk credits such as salaries and dividends, and debits against mandates such as loan instalments.

RBI

Turn Around Time (TAT) for failed transactions

Covers the time within which failed digital transactions — for example, a customer debited without the merchant being credited — are expected to be reversed or resolved across authorised payment systems such as UPI, cards and IMPS, and compensation to the customer when that time is missed.

Regulators update these rules by circular, so always check the current text at the source: Reserve Bank of India · NPCI. For Paynancial's own security and compliance posture, see the Trust Center.

FAQ

Payout API questions.

What is the Paynancial Payout API?

The resource that sends money to a beneficiary's bank account or UPI ID: POST /payouts with the beneficiary, the amount in paise and the mode, plus an idempotency key.

Why do payouts need an idempotency key?

A payout that times out might have gone through. Retrying with the same idempotency key returns the original payout instead of paying twice.

What happens if a payout fails?

You get a structured error code such as insufficient_funds, invalid_method or rate_limited, and a failed payout comes with a clear reason. Fix the cause, then retry.

Can I send payouts in bulk through the API?

Yes — Payouts supports submitting a batch of transfers in a single request, with each payout tracked individually. Ask developer support for the batch request format.

Send a test payout in the Sandbox.

Request a sandbox key and try a payout with no real money involved.