Skip to main content
POST
/
v1
/
tech
/
product
/
payouts
/
status
Get Payout Status
curl --request POST \
  --url https://app.unpay.in/api/v1/tech/product/payouts/status \
  --header 'Content-Type: <content-type>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "body": "UNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAY"
}
'
{
  "success": true,
  "transaction_id": "TXN20260413001",
  "status": "SUCCESS",
  "amount": 5,
  "payment_mode": "IMPS",
  "timestamp": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Use your API Key from the UnPay dashboard. Required for all tech/server-to-server endpoints.

Headers

Content-Type
string
default:application/json
required

Must be application/json

Body

application/json
body
string
required

AES-256-CBC encrypted payload (HEX encoded). Encrypt the plaintext JSON containing the transaction_id.

Example:

"UNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAYUNPAY"

Response

Payout status retrieved successfully

success
boolean
Example:

true

transaction_id
string
Example:

"TXN20260413001"

status
enum<string>
Available options:
PENDING,
PROCESSING,
SUCCESS,
FAILED
Example:

"SUCCESS"

amount
number
Example:

5

payment_mode
string
Example:

"IMPS"

timestamp
string<date-time>