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 Settlement Batches

GET
/api/v1/merchants/wallet/settlements
Get settlement batches with pagination and filters
Query Parameters:
currency_code (optional): Filter by currency (e.g., USD, EUR)
status (optional): Filter by status (pending, processing, completed, failed)
page: Page number (starts from 1, default: 1)
size: Number of batches per page (default: 50, max: 100)
Returns:
Batches ordered by created_at (newest first) with pagination metadata
Examples:
Get all batches: GET /api/v1/merchants/wallet/settlements
Get USD batches: GET /api/v1/merchants/wallet/settlements?currency_code=USD
Get completed batches: GET /api/v1/merchants/wallet/settlements?status=completed
Get page 2: GET /api/v1/merchants/wallet/settlements?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/settlements?currency_code=ngn&status&page=1&size=10' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Example 1
{}
Modified at 2025-10-19 19:23:05
Previous
Process Refund
Next
Update Wallet Status
Built with