1. Acceppt 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. Acceppt payment

List invoices

GET
https://pay.bottercc.com/api/v1/transactions
View all your invoices

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/transactions?limit=50&page=1&offset=0&status=all' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
  "success": true,
  "pagination": {
    "total": 45,
    "page": 1,
    "limit": 20,
    "total_pages": 3,
    "has_next_page": true,
    "has_prev_page": false
  },
  "count": 20,
  "transactions": [
    {
      "id": 1,
      "txnid": "INV_1001",
      "payu_txnid": "INV_1001_u1",
      "amount": "499.00",
      "status": "success",
      "product_name": "Pro Membership",
      "customer": {
        "name": "Jane Doe",
        "email": "jane@example.com",
        "phone": "9876543210"
      },
      "payu_id": "403993715531478",
      "created_at": "2026-08-20T08:15:00.000Z",
      "updated_at": "2026-08-20T08:16:30.000Z"
    }
  ]
}
Modified at 2026-08-20 03:55:30
Previous
Refund invoce
Next
Send payment to upi
Built with