1. Send payment
Documentation: Botter Pay
  • Introduction
  • Acceppt payment
    • Create Invoice
      POST
    • Invoice status
      GET
    • Refund invoce
      POST
    • List invoices
      GET
  • Send payment
    • Send payment to upi
      POST
    • Payout status
      GET
  • Subscription
    • Create subscription
      POST
    • subscription status
      GET
    • cancel subscription
      POST
  • Webhook
    • Webhooks
  1. Send payment

Payout status

Developing
GET
https://pay.bottercc.com/api/v1/payout
Get payout status using payout id

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://pay.bottercc.com/api/v1/payout?payout_id=104' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
  "success": true,
  "payout_id": 104,
  "amount": "100.00",
  "fee_percentage": "2.00%",
  "fee_amount": "2.00",
  "total_debited": "102.00",
  "net_payout": "100.00",
  "payout_method": "UPI",
  "recipient": {
    "upi_id": "receiver@okhdfcbank",
    "name": "Jane Doe",
    "phone": "9876543210",
    "remarks": "Vendor Commission"
  },
  "status": "pending",
  "message": "Payout request queued successfully for disbursement."
}
Modified at 2026-08-20 03:59:45
Previous
Send payment to upi
Next
Create subscription
Built with