> For the complete documentation index, see [llms.txt](https://docs.idrx.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.idrx.co/api/transaction-api/get-api-transaction-get-additional-fees.md).

# GET /api/transaction/get-additional-fees

{% hint style="info" %}

* Additional fees apply for redeeming token
  * Redeeming token worth of ≤ Rp250,000,000 IDR
    1. Fee: Rp5,000
    2. Processing: Real-time
  * Redeeming token worth of > Rp250,000,000 IDR and < Rp1,000,000,000 IDR
    1. Fee: Rp35,000
    2. Processing: Only during office hours (Monday–Friday, 08:00–15:00 WIB)
       {% endhint %}

## Parameters

1. **`feeType` (String):**

   The type of the transaction fee. Possible values are 'MINT', 'REDEEM', 'REFUND', 'BRIDGE'.
2. **`chainId` (String):**\
   Blockchain ID.
3. **`payment` (String):**

   The transaction amount. Fees are tiered by amount, so without this the response returns the base fee rather than the one that will actually apply to your transaction.
4. **`bankCode` (String):**

   The destination bank code, for `REDEEM`. Some fees depend on the receiving bank. Get the list from the [Get Methods API](/api/transaction-api/get-api-transaction-method.md).

{% hint style="info" %}
Pass `payment` and `bankCode` whenever you know them. The fee returned without them is not necessarily the fee that will be charged.
{% endhint %}

## Example Request

```
curl '<https://idrx.co/api/transaction/get-additional-fees?feeType=REDEEM>' --header 'idrx-api-key: <API_KEY>' --header 'idrx-api-sig: <signature>' --header 'idrx-api-ts': <timestamp>'
```

## Response

If the request is successful, the response will be as shown below:

```json
{
    "statusCode": 200,
    "message": "success",
    "data": [
        {
            "id": 1,
            "name": "Payment Gateway Fee",
            "amount": "3000",
            "isActive": true,
            "deleted": false
        }
    ]
}
```

`isActive` indicates if the fee is currently active and should be calculated in the transaction.
