Skip to main content
POST
/
checkout
/
order
/
fee
Query Order fee
curl --request POST \
  --url https://checkout-api-service.epayclub.com/checkout/order/fee \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "data": "<string>"
}
'
{
  "data": {
    "fee": 6,
    "amount": 100,
    "subsidiaryFee": 0,
    "customerFee": 6,
    "totalChargedAmount": 106,
    "paymentOption": "C"
  },
  "status": "success",
  "statusCode": "00",
  "message": "Operation successful"
}

Documentation Index

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

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

This endpoint accepts only encrypted requests. Learn more about our encryption here.
data
string
required
The encrypted data for this request. See the unencrypted requests here.
{
  "data": {
    "fee": 6,
    "amount": 100,
    "subsidiaryFee": 0,
    "customerFee": 6,
    "totalChargedAmount": 106,
    "paymentOption": "C"
  },
  "status": "success",
  "statusCode": "00",
  "message": "Operation successful"
}