Skip to main content
GET
/
pg
/
settlements
/
{uid}
/
recon
Settlement Reconciliation
curl --request GET \
  --url https://api-pacb-uat.eximpe.com/pg/settlements/{uid}/recon/ \
  --header 'X-API-Version: <api-key>' \
  --header 'X-Client-ID: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "success": true,
  "message": "Settlement transactions retrieved successfully",
  "data": {
    "count": 412,
    "page": 1,
    "page_size": 250,
    "next": "https://api.eximpe.com/pg/settlements/ST6937597440/recon/?page=2",
    "previous": null,
    "results": [
      {
        "settlement_type": "capture",
        "transaction_id": "PR7041820005",
        "settlement_id": "ST6937597440",
        "settlement_completed_at": "2026-05-28T11:20:33Z",
        "settlement_currency": "USD",
        "transaction_amount": "100.00",
        "merchant_net_amount": "95.00",
        "total_processing_fee": "3.00",
        "total_service_tax": "0.54",
        "mop_type": "UPI",
        "transaction_currency": "INR"
      },
      {
        "settlement_type": "refund",
        "transaction_id": "RF1533204282",
        "settlement_id": "ST6937597440",
        "settlement_currency": "USD",
        "transaction_amount": "20.00",
        "merchant_net_amount": "-20.00",
        "total_processing_fee": "0.00",
        "total_service_tax": "0.00",
        "mop_type": "UPI",
        "transaction_currency": "INR"
      },
      {
        "settlement_type": "chargeback",
        "transaction_id": "CB4611686552",
        "settlement_id": "ST6937597440",
        "settlement_completed_at": "2026-05-28T11:20:33Z",
        "settlement_currency": "USD",
        "transaction_amount": "50.00",
        "merchant_net_amount": "-50.00",
        "total_processing_fee": "0.00",
        "total_service_tax": "0.00",
        "mop_type": "CREDIT_CARD",
        "transaction_currency": "INR"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.eximpe.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Client-ID
string
header
required

Client Application ID - Your unique application identifier used to authenticate API requests. You can find your Client ID in the Developer Settings section of the merchant dashboard.

X-Client-Secret
string
header
required

Client Secret Key - Your secret key used alongside the Client ID for secure authentication. Keep this confidential and never expose it in client-side code. Available in the Developer Settings section of the merchant dashboard.

X-API-Version
string
header
required

API Version - Specifies which version of the API to use (e.g., '1.X.X', '2.X.X', or '3.X.X'). This header allows you to control which API version your integration uses. Default version information is available in the Developer Settings.

Headers

X-Merchant-ID
string

PSP only. When supplied, scopes the response to the named sub-merchant. When omitted, a PSP sees its own and all sub-merchants' transactions.

Path Parameters

uid
string
required

Settlement unique identifier (e.g. ST6937597440).

Query Parameters

page
integer
default:1

Page number.

page_size
integer
default:250

Transactions per page (max 1000).

Required range: x <= 1000

Response

A paginated list of settlement transactions.

success
boolean
message
string
data
object