Kutanapay Merchant API
  1. Merchant Wallet
Kutanapay Merchant API
  • Merchant API Keys
    • Create Api Key
      POST
    • Get Api Keys
      GET
    • Revoke Api Key
      DELETE
  • Merchant Wallet
    • Get All Wallets
      GET
    • Get Wallet Transactions
      GET
    • Process Refund
      POST
    • Get Settlement Batches
      GET
    • Update Wallet Status
      PATCH
    • Get Wallet By Currency
      GET
  • Merchant Customer Transactions
    • Get Merchant Transactions
      GET
    • Get Merchant Transaction
      GET
  • Merchant Checkout
    • Create Checkout
      POST
    • List Checkouts
      GET
    • Get Checkout
      GET
  • Merchant Webhooks
    • Create Webhook
      POST
    • Get Webhooks
      GET
    • Update Webhook
      PUT
    • Delete Webhook
      DELETE
  • Merchant Branding
    • Get Branding
      GET
    • Update Branding
      PUT
  • Merchant Payment Accounts
    • Add Payment Account
      POST
    • Get Payment Accounts
      GET
    • Get Payment Account
      GET
    • Update Payment Account
      PUT
    • Delete Payment Account
      DELETE
  • Merchant Withdrawals
    • Initiate Withdrawal
    • Get Withdrawal History
    • Cancel Withdrawal
    • Get Withdrawal
  • Merchant Payouts
    • Initiate Payout
    • Get Payout History
    • Cancel Payout
    • Get Payout
  1. Merchant Wallet

Get Wallet Transactions

GET
/api/v1/merchants/wallet/transactions
Get merchant wallet transactions with pagination
IMPORTANT: Returns internal wallet operations (settlements, balance movements, internal transfers).
NOT customer payment transactions. For customer-facing transactions, use /merchants/customer/transactions.
Query Parameters:
currency_code (optional): Filter by currency code (case-insensitive, e.g., USD, usd, Usd)
If provided: Returns wallet transactions for that specific currency
If not provided: Returns all wallet transactions across all currencies
Returns error if currency code is invalid
page: Page number (starts from 1, default: 1)
size: Number of transactions per page (default: 50, max: 100)
Returns:
Internal wallet transactions ordered by created_at (newest first) with pagination metadata including:
transaction_type: settlement, payout, refund, adjustment, etc.
amount: Transaction amount
balance_before: Balance before transaction
balance_after: Balance after transaction
settlement_status: unsettled, settled, or not_applicable
total: Total number of transactions
page: Current page number
size: Items per page
total_pages: Total number of pages
has_more: Whether more pages are available
Examples:
Get all wallet transactions: GET /api/v1/merchants/wallet/transactions
Get USD wallet transactions: GET /api/v1/merchants/wallet/transactions?currency_code=USD
Get EUR wallet transactions page 2: GET /api/v1/merchants/wallet/transactions?currency_code=EUR&page=2&size=20

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Query Params

Header Params

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/merchants/wallet/transactions?currency_code=usd&page=1&size=10' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Example 1
{}
Modified at 2025-11-19 15:18:25
Previous
Get All Wallets
Next
Process Refund
Built with