curl --request GET \
--url https://api-staging.eximpe.com/pg/settlements/{settlement_id} \
--header 'X-Client-ID: <api-key>' \
--header 'X-Client-Secret: <api-key>'{
"success": true,
"message": "Settlements fetched successfully",
"data": {
"settlement_id": "ST4353980017",
"utr_number": "092dc30a-4f19-4318-9798-ad08b48801f6",
"settlement_completed_date": "2025-06-20T08:06:59.293548Z",
"forex_rate_cents": 8600,
"settlement_amount_cents": 100000,
"settlement_currency": "USD",
"transactions": [
{
"settlement_type": "capture",
"transaction_id": "PR3828502708",
"transaction_amount": 1000,
"merchant_service_fee": 0,
"merchant_service_tax": 0,
"merchant_net_amount": 1000,
"mop_type": "UPI",
"transaction_currency": "INR",
"forex_rate": 86
}
]
}
}Retrieve the details of a specific settlement by its ID.
curl --request GET \
--url https://api-staging.eximpe.com/pg/settlements/{settlement_id} \
--header 'X-Client-ID: <api-key>' \
--header 'X-Client-Secret: <api-key>'{
"success": true,
"message": "Settlements fetched successfully",
"data": {
"settlement_id": "ST4353980017",
"utr_number": "092dc30a-4f19-4318-9798-ad08b48801f6",
"settlement_completed_date": "2025-06-20T08:06:59.293548Z",
"forex_rate_cents": 8600,
"settlement_amount_cents": 100000,
"settlement_currency": "USD",
"transactions": [
{
"settlement_type": "capture",
"transaction_id": "PR3828502708",
"transaction_amount": 1000,
"merchant_service_fee": 0,
"merchant_service_tax": 0,
"merchant_net_amount": 1000,
"mop_type": "UPI",
"transaction_currency": "INR",
"forex_rate": 86
}
]
}
}Client app ID. You can find your app id in the merchant dashboard.
Client secret key. You can find your secret in the merchant dashboard.
The ID of the settlement to retrieve.
The details of the settlement.
Show child attributes
Unique identifier for the settlement.
UTR (Unique Transaction Reference) number for the settlement.
The timestamp of when the settlement was completed.
Forex rate in cents (e.g., 8600 represents 86.00).
Settlement amount in cents (e.g., 100000 represents 1000.00).
Currency code for the settlement amount.
Show child attributes
Type of settlement transaction (e.g., capture, refund)
Unique identifier for the transaction
Transaction amount
Merchant service fee
Merchant service tax
Net amount for merchant
Method of payment type
UPI, CREDIT_CARD, DEBIT_CARD, NET_BANKING, QR Currency of the transaction
Forex rate applied to the transaction